com.vaadin.flow.server.startup.
Class VaadinInitializerException
All Implemented Interfaces:
Indicates an issue during Vaadin initialization.
Since:
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionVaadinInitializerException
(String message) Constructs a new exception with the specified detail message.
VaadinInitializerException
(String message, Throwable cause) Constructs a new exception with the specified detail message and 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
-
VaadinInitializerException
Constructs a new exception with the specified detail message.
Parameters:
message
- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()
method. -
VaadinInitializerException
Constructs a new exception with the specified detail message and cause.
Parameters:
message
- the detail message (which is saved for later retrieval by theThrowable.getMessage()
method).cause
- the cause (which is saved for later retrieval by theThrowable.getCause()
method). (Anull
value is permitted, and indicates that the cause is nonexistent or unknown.)
-