We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.copilot.
Package com.vaadin.copilot
Class CopilotException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.vaadin.copilot.CopilotException
All Implemented Interfaces:
Direct Known Subclasses:
Generic exception for Copilot which exists mainly to make it easy to see that an exception originated inside Copilot.
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCopilotException
(String message) Creates a new exception with the given message.
CopilotException
(String message, Throwable cause) Creates a new exception with the given message and cause.
CopilotException
(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
-
CopilotException
Creates a new exception with the given message.
Parameters:
message
- the message of the exception -
CopilotException
Creates a new exception with the given cause.
Parameters:
cause
- the cause of the exception -
CopilotException
Creates a new exception with the given message and cause.
Parameters:
message
- the message of the exceptioncause
- the cause of the exception
-