📄 validateexception.java
字号:
package net.sf.component.table.validator;
/**
*
* $Id: ValidateException.java 844 2005-09-12 03:18:14Z yflei $
* Created Date: 2005-8-28
* @author SimonLei
*/
public class ValidateException extends Exception {
public ValidateException() {
super();
}
public ValidateException(String message, Throwable cause) {
super(message, cause);
}
public ValidateException(String message) {
super(message);
}
public ValidateException(Throwable cause) {
super(cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -