⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dataioexception.java

📁 用applet实现很多应用小程序
💻 JAVA
字号:
package prefuse.data.io;

/**
 * Exception indicating an error occurred during reading or writing data.
 *
 * @author <a href="http://jheer.org">jeffrey heer</a>
 */
public class DataIOException extends Exception {

    /**
     * Create a new DataIOException.
     */
    public DataIOException() {
        super();
    }

    /**
     * Create a new DataIOException.
     * @param message a descriptive error message
     */
    public DataIOException(String message) {
        super(message);
    }

    /**
     * Create a new DataIOException.
     * @param message a descriptive error message
     * @param cause a Throwable (e.g., error or exception) that was the cause
     * for this exception being thrown
     */
    public DataIOException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * Create a new DataIOException.
     * @param cause a Throwable (e.g., error or exception) that was the cause
     * for this exception being thrown
     */
    public DataIOException(Throwable cause) {
        super(cause);
    }
    
} // end of class DataIOException

⌨️ 快捷键说明

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