com.vaadin.flow.component.
Package com.vaadin.flow.component
Class UIDetachedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.vaadin.flow.component.UIDetachedException
All Implemented Interfaces:
Exception thrown if the UI has been detached when it should not be.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of the exception.
UIDetachedException
(String message) Creates an instance of the exception using the given message.
UIDetachedException
(String message, Throwable cause) Creates an instance of the exception using the given message and cause.
UIDetachedException
(Throwable cause) Creates an instance of the exception using 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
-
UIDetachedException
public UIDetachedException()Creates an instance of the exception.
-
UIDetachedException
Creates an instance of the exception using the given message and cause.
Parameters:
message
- the message to usecause
- the cause of the exception -
UIDetachedException
Creates an instance of the exception using the given message.
Parameters:
message
- the message to use -
UIDetachedException
Creates an instance of the exception using the given cause.
Parameters:
cause
- the cause of the exception
-