catalogdaosysexception.java
来自「一个免费wap站」· Java 代码 · 共 29 行
JAVA
29 行
package com.eline.wap.catalog.exceptions;
/**
*
* @author Lucifer
*
* CatalogDAOSysException is an exception that extends the standard
* RunTimeException Exception. This is thrown by the DAOs of the catalog
* component when there is some irrecoverable error (like SQLException)
*/
public class CatalogDAOSysException extends RuntimeException {
private static final long serialVersionUID = 1L;
/**
* Constructor
* @param string a string that explains what the exception condition is
*/
public CatalogDAOSysException (String string) {
super(string);
}
/**
* Default constructor. Takes no arguments
*/
public CatalogDAOSysException () {
super();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?