sclass QuickException extends RuntimeException { public Throwable fillInStackTrace() { ret this; } *() {} *(Throwable e) { super(e); } *(S msg) { super(msg); } *(S msg, Throwable e) { super(msg, e); } }