Package de.richtercloud.message.handler
Interface BugHandler
-
- All Known Subinterfaces:
IssueHandler
- All Known Implementing Classes:
DefaultIssueHandler,DialogBugHandler,DialogIssueHandler,JavaFXDialogBugHandler,JavaFXDialogIssueHandler,LoggerBugHandler,LoggerIssueHandler
public interface BugHandler- Author:
- richter
-
-
Method Summary
All Methods Instance Methods Abstract 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
void handleUnexpectedException(ExceptionMessage message)
Handles an unexpected exception message which needs to be defined by the implementation. This is different fromhandleUnexpectedException(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).- Parameters:
message- the message to handle
-
shutdown
void shutdown()
Closes eventually opened resources (network connection for upload of exception stacktraces, etc.).
-
-