fpdlserializerexception.java
来自「Fire-Workflow-Engine-All-In-One-20090208」· Java 代码 · 共 43 行
JAVA
43 行
package org.fireflow.model.io;
public class FPDLSerializerException extends Exception{
/** Construct a new FPDLSerializerException. */
public FPDLSerializerException(){
super();
}
/** Construct a new FPDLSerializerException with the given error message.
@param message The error message
*/
public FPDLSerializerException(String message){
super(message);
}
/** Construct a new FPDLSerializerException with the given nested error.
@param t The nested error
*/
public FPDLSerializerException(Throwable t){
super(t);
}
/** Construct a new FPDLSerializerException with the given error message
and nested error.
@param message The error message
@param t The error
*/
public FPDLSerializerException(String message, Throwable t){
super(message, t);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?