@deprecated DO NOT USE THIS METHOD, its here just to get the compiler working and isn't intended for use
(Throwable cause)
| 55 | * @deprecated DO NOT USE THIS METHOD, its here just to get the compiler working and isn't intended for use |
| 56 | */ |
| 57 | public Throwable initCause(Throwable cause) { |
| 58 | this.cause = cause; |
| 59 | return this; |
| 60 | } |
| 61 | |
| 62 | public Throwable getCause() { |
| 63 | return cause; |
no outgoing calls
no test coverage detected