Improved exception reporting

git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@179 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
Jared Gould 2006-07-25 16:13:13 +00:00
parent 9f766b4f3a
commit 26a4af0e19
1 changed files with 3 additions and 1 deletions

View File

@ -223,7 +223,9 @@ public class DOMRomUnmarshaller {
try {
table = (Table)ObjectCloner.deepCopy((Object)rom.getTable(unmarshallAttribute(tableNode, "base", "none")));
} catch (TableNotFoundException ex) { /* table not found */ } catch (NullPointerException ex) {
} catch (TableNotFoundException ex) { /* table not found, do nothing */
} catch (NullPointerException ex) {
JOptionPane.showMessageDialog(parent, new DebugPanel(ex,
parent.getSettings().getSupportURL()), "Exception", JOptionPane.ERROR_MESSAGE);