As Throwables#throwIfUnchecked(Throwable).
(Throwable throwable)
| 1036 | |
| 1037 | /** As {@link Throwables#throwIfUnchecked(Throwable)}. */ |
| 1038 | @Deprecated // to be removed before 2.0 |
| 1039 | public static void throwIfUnchecked(Throwable throwable) { |
| 1040 | Throwables.throwIfUnchecked(throwable); |
| 1041 | } |
| 1042 | |
| 1043 | /** |
| 1044 | * This method rethrows input throwable as is (if its unchecked) or |