propertiesexception.java

来自「一个利用Java语言实现的ftp程序」· Java 代码 · 共 25 行

JAVA
25
字号
package util;

import javaFtp.BaseException;

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

public
class PropertiesException extends BaseException {

    public PropertiesException()  {
        super();
    }

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

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

⌨️ 快捷键说明

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