catch (SAXParseException pe) {
System.out.println( "Error at " + pe.getSystemId()
+ " line " + pe.getLineNumber()
+ ": " + pe.getMessage() );
} catch (SAXException se) { // other SAX errors
System.out.println( "ill-formed XML file" + se.getMessage());
} catch (IOException e) {
System.out.println( "can't find/read file" );
} catch (Throwable t) { t.printStackTrace(); } // other errors
-_-_-