static RuntimeException quickFail() { throw new QuickException("fail"); } static RuntimeException quickFail(Throwable e) { throw asQuickException(e); } static RuntimeException quickFail(O msg) { throw new QuickException(S.valueOf(msg)); } static RuntimeException quickFail(S msg) { throw new QuickException(unnull(msg)); } static RuntimeException quickFail(S msg, Throwable innerException) { throw new QuickException(msg, innerException); }