(Throwable e)
| 42 | } |
| 43 | |
| 44 | public Throwable initCause(Throwable e) { |
| 45 | if (cause == null) { |
| 46 | cause = e; |
| 47 | return this; |
| 48 | } else { |
| 49 | throw new IllegalStateException(); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | public String getMessage() { |
| 54 | return message; |
no outgoing calls
no test coverage detected