throwUncheckedException(), -, , .
:
public RT handle(Object[] params, Throwable e) {
throw new RuntimeException(e);
}
return ( ), , , , .
, handle , statememt.
throwUncheckedException() -, return.
throwUncheckedException() - :
public static <T> T throwUncheckedException(Throwable e) {
throw new RuntimeException(e);
return null;
}
, , , , , . , :
public RT handle(Object[] params, Throwable e) {
throw Exceptions.makeUncheckedException(e);
}