| org.java.plugin.boot.BootErrorHandler
All known Subclasses: org.java.plugin.boot.BootErrorHandlerGui, org.java.plugin.boot.BootErrorHandlerConsole,
BootErrorHandler | public interface BootErrorHandler (Code) | | Callback interface to handle boot-time application errors.
version: $Id$ |
handleError | boolean handleError(String message, Exception e)(Code) | | Called if non-fatal error has occurred and application boot may be
continued.
Parameters: message - error message Parameters: e - an error true if user wish to continue application start |
handleError | boolean handleError(String message, IntegrityCheckReport integrityCheckReport)(Code) | | Called if an error has been detected during plug-ins integrity check and
application boot may be continued.
Parameters: message - error message Parameters: integrityCheckReport - integrity check report true if user wish to continue application start |
handleFatalError | void handleFatalError(String message)(Code) | | Called if fatal error has occurred.
Parameters: message - error message |
handleFatalError | void handleFatalError(String message, Throwable t)(Code) | | Called if fatal error has occurred.
Parameters: message - error message Parameters: t - an error |
|
|