(Exception e)
| 111 | } |
| 112 | |
| 113 | private static Throwable getCauseOrElse(Exception e) { |
| 114 | if (e.getCause() != null) |
| 115 | return e.getCause(); |
| 116 | return e; |
| 117 | } |
| 118 | |
| 119 | private static RuntimeException throwCauseOrElseException(Exception e) { |
| 120 | if (e.getCause() != null) |
no outgoing calls
no test coverage detected