propertiesexception.java

来自「Ftp服务1.0」· Java 代码 · 共 23 行

JAVA
23
字号
package ranab.util;

/**
 * Properties exception class.
 * 
 * @author <a href="mailto:rana_b@yahoo.com">Rana Bhattacharyya</a>
 */

public
class PropertiesException extends ranab.BaseException {

    public PropertiesException()  {
        super();
    }

    public PropertiesException(String msg)  {
        super(msg);
    }

    public PropertiesException(Exception ex)  {
        super(ex);
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?