Package com.vaadin.flow.server.startup
Class VaadinInitializerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.vaadin.flow.server.startup.VaadinInitializerException
- All Implemented Interfaces:
Serializable
Indicates an issue during Vaadin initialization.
- 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). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-