?? generalfailureexception.java
字號:
/* */package com.sun.j2ee.workflow.control.exceptions;/** This exception is the base class for all the web runtime exceptions. * @author Jian (James) Cai */public class GeneralFailureException extends RuntimeException implements java.io.Serializable { private Throwable t; public GeneralFailureException(String s) { super(s); } public GeneralFailureException(String s, Throwable t) { super(s); this.t = t; } public String getThrowable() { return ("Received throwable with Message: "+ t.getMessage()); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -