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:
public class VaadinInitializerException extends Exception
Indicates an issue during Vaadin initialization.
Since:
See Also:
-
-
Constructor Summary
Constructors Constructor Description VaadinInitializerException(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 Detail
-
VaadinInitializerException
public VaadinInitializerException(String message)
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
public VaadinInitializerException(String message, Throwable cause)
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.)
-
-