fpdlparserexception.java.svn-base

来自「Fire-Workflow-Engine-All-In-One-20090208」· SVN-BASE 代码 · 共 48 行

SVN-BASE
48
字号


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 + =
减小字号Ctrl + -
显示快捷键?