Don't ignore exceptions

This commit is contained in:
Elias Naur 2005-11-20 10:08:02 +00:00
parent 95e35d95ac
commit 73314be1bb

View file

@ -51,6 +51,7 @@ abstract class J2SESysImplementation extends DefaultSysImplementation {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch(Exception e) {
LWJGLUtil.log("Caught exception while setting LAF: " + e);
}
JOptionPane.showMessageDialog(null, message, title, JOptionPane.WARNING_MESSAGE);
}