Class PessimisticSerializationRequiredException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.vaadin.kubernetes.starter.sessiontracker.PessimisticSerializationRequiredException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
UnserializableComponentWrapperFoundException
Exception raise during session serialization to indicate that VaadinSession
lock is required to complete the operation.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with the specified detail message.PessimisticSerializationRequiredException(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
-
PessimisticSerializationRequiredException
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.
-
PessimisticSerializationRequiredException
Constructs a new exception with the specified detail message and cause.- Parameters:
message- the detail message.cause- the cause. (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)
-