()
| 61 | } |
| 62 | |
| 63 | public Throwable getTarget() |
| 64 | { |
| 65 | // check for easy mistake |
| 66 | Throwable target = getCause(); |
| 67 | if(target instanceof InvocationTargetException) |
| 68 | return((InvocationTargetException)target).getTargetException(); |
| 69 | else |
| 70 | return target; |
| 71 | } |
| 72 | |
| 73 | public String toString() |
| 74 | { |
no outgoing calls
no test coverage detected