Package net.ontopia.topicmaps.viz
Class ErrorDialog
- java.lang.Object
-
- net.ontopia.topicmaps.viz.ErrorDialog
-
public class ErrorDialog extends Object
INTERNAL: A generalized error dialog which displays an exception by showing the error message, but with support for showing the traceback if necessary.
-
-
Constructor Summary
Constructors Constructor Description ErrorDialog()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
showError(Component parent, Exception e)
INTERNAL: Shows dialog for an exception.static void
showError(Component parent, String message)
INTERNAL: Shows a straight error message.static void
showError(Component parent, String msg, Exception e)
INTERNAL: Shows dialog for an exception.static void
showMessage(Component parent, Exception e)
INTERNAL: Shows dialog for an exception.
-
-
-
Method Detail
-
showError
public static void showError(Component parent, Exception e)
INTERNAL: Shows dialog for an exception.
-
showMessage
public static void showMessage(Component parent, Exception e)
INTERNAL: Shows dialog for an exception.
-
showError
public static void showError(Component parent, String msg, Exception e)
INTERNAL: Shows dialog for an exception.
-
-