01: /*
02: * Created on Feb 28, 2004
03: */
04: package uk.org.ponder.swingutil;
05:
06: import javax.swing.JFrame;
07: import javax.swing.JOptionPane;
08:
09: /**
10: * The class
11: *
12: * @author Bosmon
13: */
14: public class ErrorDialog {
15: public static void show(JFrame frame, Throwable t) {
16: JOptionPane.showMessageDialog(frame, t.getMessage(), "Error",
17: JOptionPane.ERROR_MESSAGE);
18:
19: }
20: }
|