📄 fpdlparserexception.java
字号:
package org.fireflow.model.io;
/**
*
* @author chennieyun
*
*/
public class FPDLParserException extends Exception{
/** Construct a new FPDLParserException. */
public FPDLParserException(){
super();
}
/** Construct a new FPDLParserException with the specified message.
@param message The error message
*/
public FPDLParserException(String message){
super(message);
}
/** Construct a new FPDLParserException with the specified nested error.
@param t The nested error
*/
public FPDLParserException(Throwable t){
super(t);
}
/** Construct a new FPDLParserException with the specified error message
and nested exception.
@param message The error message
@param t The nested error
*/
public FPDLParserException(String message, Throwable t){
super(message, t);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -