mirror of https://github.com/rusefi/RomRaider.git
Improved exception reporting
git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@179 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
parent
9f766b4f3a
commit
26a4af0e19
|
@ -223,7 +223,9 @@ public class DOMRomUnmarshaller {
|
||||||
try {
|
try {
|
||||||
table = (Table)ObjectCloner.deepCopy((Object)rom.getTable(unmarshallAttribute(tableNode, "base", "none")));
|
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,
|
JOptionPane.showMessageDialog(parent, new DebugPanel(ex,
|
||||||
parent.getSettings().getSupportURL()), "Exception", JOptionPane.ERROR_MESSAGE);
|
parent.getSettings().getSupportURL()), "Exception", JOptionPane.ERROR_MESSAGE);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue