- java.lang.Object
-
- util.exc.ErrorWindow
-
class ErrorWindow extends java.lang.Object
The dialog used to show exceptions.This implementation shows the stack trace and the nested exceptions as well. This class was moved from ErrorHandler into a separate Class in Version 2.1. Please use ErrorHandler, do not call this directly
-
-
Constructor Summary
Constructors Constructor Description ErrorWindow(java.awt.Component parent, java.lang.String errorMsg, java.lang.Throwable thr)
Creates a new instance of ErrorDialog.ErrorWindow(java.awt.Component parent, java.lang.String errorMsg, java.lang.Throwable thr, int messageType)
Creates a new instance of ErrorDialog.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
centerAndShow()
Centers and shows the error dialog.int
getReturnValue()
Returns the Value of the Button that was pressed.
-
-
-
Constructor Detail
-
ErrorWindow
public ErrorWindow(java.awt.Component parent, java.lang.String errorMsg, java.lang.Throwable thr)
Creates a new instance of ErrorDialog.- Parameters:
parent
- A component in the component tree the dialog should be created for.errorMsg
- The localized error message.thr
- The throwable whose details are shown by the dialog.
-
ErrorWindow
public ErrorWindow(java.awt.Component parent, java.lang.String errorMsg, java.lang.Throwable thr, int messageType)
Creates a new instance of ErrorDialog.- Parameters:
parent
- A component in the component tree the dialog should be created for.errorMsg
- The localized error message.thr
- The throwable whose details are shown by the dialog.messageType
- The type of Window to Display: ErrorHandler.SHOW_OK, ErrorHandler.SHOW_YES_NO- Since:
- 2.1
-
-