xmlimportexception.java
来自「这个是perst-269.zip下面的SOURCECODE,和大家分享了。」· Java 代码 · 共 30 行
JAVA
30 行
package org.garret.perst;
/**
* Exception thrown during import of data from XML file in database
*/
public class XMLImportException extends Exception {
public XMLImportException(int line, int column, String message) {
super("In line " + line + " column " + column + ": " + message);
this.line = line;
this.column = column;
this.message = message;
}
public String getMessageText() {
return message;
}
public int getLine() {
return line;
}
public int getColumn() {
return column;
}
private int line;
private int column;
private String message;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?