Package de.richtercloud.message.handler
Class JavaFXDialogBugHandler
- java.lang.Object
-
- de.richtercloud.message.handler.JavaFXDialogBugHandler
-
- All Implemented Interfaces:
BugHandler
public class JavaFXDialogBugHandler extends Object implements BugHandler
- Author:
- richter
-
-
Constructor Summary
Constructors Constructor Description JavaFXDialogBugHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidhandleUnexpectedException(ExceptionMessage message)Handles an unexpected exception message which needs to be defined by the implementation.voidshutdown()Closes eventually opened resources (network connection for upload of exception stacktraces, etc.).
-
-
-
Method Detail
-
handleUnexpectedException
public void handleUnexpectedException(ExceptionMessage message)
Description copied from interface:BugHandlerHandles an unexpected exception message which needs to be defined by the implementation. This is different fromBugHandler.handleUnexpectedException(de.richtercloud.message.handler.ExceptionMessage)in the way that it should encourage the user to file a bug or confirm that the bug is automatically filed (again dependening on the implementation).- Specified by:
handleUnexpectedExceptionin interfaceBugHandler- Parameters:
message- the message to handle
-
shutdown
public void shutdown()
Description copied from interface:BugHandlerCloses eventually opened resources (network connection for upload of exception stacktraces, etc.).- Specified by:
shutdownin interfaceBugHandler
-
-