📄 xmlbeanexception.java
字号:
/**
* =============================================
* Copyright 2005 TransFar
*
* Change Revision
* --------------------------------
* Date Author Remarks
* 2006-3-10 YHuang Create class com.szmx.component.xml.rw.XmlBeanException
* =============================================
*/
package com.szmx.component.xml.rw;
/**
* <TODO: Write a short description on the purpose of the program>
*
* @author YHuang
* @version 1.0
* @class com.szmx.component.xml.rw.XmlBeanException
* @since 2006-3-10
*/
public class XmlBeanException extends Exception{
public XmlBeanException() {
}
public XmlBeanException(String message) {
super(message);
}
public XmlBeanException(Throwable cause) {
super(cause);
}
public XmlBeanException(String message, Throwable cause) {
super(message, cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -