📄 fatalbeanexception.java
字号:
package org.conference.pagination;
/**
* <p><strong>FatalBeanException</strong>,
* Thrown on an unrecoverable problem encountered with Java Beans.
*
* @author ZXM
* @package org.javawing.components.util
* @since 3.0
*/
public class FatalBeanException
extends BeansException {
/**
* Create a new FatalBeanException with no specified message.
*/
public FatalBeanException() {
super();
}
/**
* Create a new FatalBeanException with the specified message.
* @param msg the detail message
*/
public FatalBeanException(String msg) {
super(msg);
}
/**
* Create a new FatalBeanException with the root cause.
* @param ex the root cause
*/
public FatalBeanException(Throwable ex) {
super(ex);
}
/**
* Create a new FatalBeanException with the specified message
* and root cause.
* @param msg the detail message
* @param ex the root cause
*/
public FatalBeanException(String msg, Throwable ex) {
super(msg, ex);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -