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:
public class UIDetachedException extends RuntimeException
Exception thrown if the UI has been detached when it should not be.
Since:
1.0
Author:
Vaadin Ltd
See Also:
-
-
Constructor Summary
Constructors Constructor Description UIDetachedException()
Creates 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 Detail
-
UIDetachedException
public UIDetachedException()
Creates an instance of the exception.
-
UIDetachedException
public UIDetachedException(String message, Throwable cause)
Creates an instance of the exception using the given message and cause.
Parameters:
message
- the message to usecause
- the cause of the exception
-
UIDetachedException
public UIDetachedException(String message)
Creates an instance of the exception using the given message.
Parameters:
message
- the message to use
-
UIDetachedException
public UIDetachedException(Throwable cause)
Creates an instance of the exception using the given cause.
Parameters:
cause
- the cause of the exception
-
-