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

📄 registryexception.java

📁 jsf example about book manager
💻 JAVA
字号:
package com.mycompany.expense;

/**
 * This exception signals an error reading or writing a
 * report in the ReportRegistry.
 *
 * @author Hans Bergsten, Gefion Software <hans@gefionsoftware.com>
 * @version 1.0
 */
public class RegistryException extends Exception {
    public RegistryException() {
	super();
    }

    public RegistryException(String message) {
	super(message);
    }

    public RegistryException(String message, Throwable cause) {
	super(message, cause);
    }

    public RegistryException(Throwable cause) {
	super(cause);
    }
}

⌨️ 快捷键说明

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