18 lines
390 B
Text
18 lines
390 B
Text
|
|
class Errors implements ErrorHandler {
|
|
@Override
|
|
public void warning(SAXParseException exception) {
|
|
exception.printStackTrace();
|
|
}
|
|
|
|
@Override
|
|
public void fatalError(SAXParseException exception) {
|
|
exception.printStackTrace();
|
|
}
|
|
|
|
@Override
|
|
public void error(SAXParseException exception) {
|
|
exception.printStackTrace();
|
|
}
|
|
}
|
|
|