Changeset 231:654b7d7cc33c
- Timestamp:
- 04/16/08 14:19:29
(5 months ago)
- Author:
- Frank Benoit <benoit@tionex.de>
- branch:
- default
- Message:
instead of throwable member var, use the Exception.next
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r158 |
r231 |
|
| 54 | 54 | * or null if this information is not available. |
|---|
| 55 | 55 | */ |
|---|
| 56 | | public Exception throwable; |
|---|
| | 56 | public Exception throwable( Exception e ){ |
|---|
| | 57 | this.next = e; |
|---|
| | 58 | return this.next; |
|---|
| | 59 | } |
|---|
| | 60 | public Exception throwable(){ |
|---|
| | 61 | return this.next; |
|---|
| | 62 | } |
|---|
| 57 | 63 | |
|---|
| 58 | 64 | //static final long serialVersionUID = 3833467327105808433L; |
|---|
| r158 |
r231 |
|
| 45 | 45 | * or null if this information is not available. |
|---|
| 46 | 46 | */ |
|---|
| 47 | | public Exception throwable; |
|---|
| | 47 | public Exception throwable( Exception e ){ |
|---|
| | 48 | this.next = e; |
|---|
| | 49 | return this.next; |
|---|
| | 50 | } |
|---|
| | 51 | public Exception throwable(){ |
|---|
| | 52 | return this.next; |
|---|
| | 53 | } |
|---|
| | 54 | |
|---|
| 48 | 55 | |
|---|
| 49 | 56 | //static final long serialVersionUID = 3257282552304842547L; |
|---|