xmlhttpexception.java
来自「管理公司合同」· Java 代码 · 共 39 行
JAVA
39 行
/*
* Created on 2005-12-16 18:47:30
*
* By SinoBest
* Copyright E3.org, 2005-2006, All rights reserved.
*/
package cn.com.juneng.system.common.xmlhttp;
/**
* @author yehailong
*
*/
public class XmlHttpException extends Exception {
public XmlHttpException() {
super();
// TODO Auto-generated constructor stub
}
public XmlHttpException(String message) {
super(message);
// TODO Auto-generated constructor stub
}
public XmlHttpException(Throwable cause) {
super(cause);
// TODO Auto-generated constructor stub
}
public XmlHttpException(String message, Throwable cause) {
super(message, cause);
// TODO Auto-generated constructor stub
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?