registryexception.java
来自「jsf example about book manager」· Java 代码 · 共 27 行
JAVA
27 行
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 + =
减小字号Ctrl + -
显示快捷键?