Package com.vaadin.copilot.exception
Class SuggestRestartException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.vaadin.copilot.exception.CopilotException
com.vaadin.copilot.exception.SuggestRestartException
- All Implemented Interfaces:
Serializable
Exception that suggests to restart the application.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSuggestRestartException(String message) Creates a new exception with the given message.SuggestRestartException(String message, Throwable cause) Creates a new exception with the given message and cause.SuggestRestartException(Throwable cause) Creates a new exception with the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
SuggestRestartException
Creates a new exception with the given message.- Parameters:
message- the message of the exception
-
SuggestRestartException
Creates a new exception with the given cause.- Parameters:
cause- the cause of the exception
-
SuggestRestartException
Creates a new exception with the given message and cause.- Parameters:
message- the message of the exceptioncause- the cause of the exception
-