📄 incorrectschemaexception.java
字号:
/*
* Created on 13-Apr-2005
*
* TODO All
*/
package ke.defaultimpl.utils.xml.parsing;
/**
* @author James Cunningham
*
* @version
*
* TODO All
*/
public class IncorrectSchemaException extends Exception
{
/**
*
*/
public IncorrectSchemaException() {
super();
}
/**
* @param message
*/
public IncorrectSchemaException(String message) {
super(message);
}
/**
* @param message
* @param cause
*/
public IncorrectSchemaException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public IncorrectSchemaException(Throwable cause) {
super(cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -