(Function<? super String, ? extends E> fn, String format,
Object... args)
| 59 | } |
| 60 | |
| 61 | public static <E extends Exception, R> R raise(Function<? super String, ? extends E> fn, String format, |
| 62 | Object... args) throws E { |
| 63 | throw create(fn, format, args); |
| 64 | } |
| 65 | |
| 66 | public static <E extends Exception> void raiseIf(boolean condition, Function<? super String, ? extends E> fn, |
| 67 | String format, Object... args) throws E { |
no test coverage detected