(@NonNull Throwable t)
| 117 | } |
| 118 | |
| 119 | public static AssertionError unsafeThrow(@NonNull Throwable t) { |
| 120 | Objects.requireNonNull(t, "t == null"); |
| 121 | unsafeThrowImpl(t); |
| 122 | return new AssertionError("unreachable"); |
| 123 | } |
| 124 | |
| 125 | public static AssertionError unsafeThrowForIteCause(@NonNull Throwable t) { |
| 126 | Objects.requireNonNull(t, "t == null"); |
no test coverage detected