java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalStateException
io.helidon.common.http.AlreadyCompletedException
- All Implemented Interfaces:
Serializable
Signals that a mutation method has been invoked on a resource that is already completed.
It is no longer possible to mute state of these objects.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs anAlreadyCompletedExceptionwith the specified detail message.AlreadyCompletedException(String message, Throwable cause) Constructs anAlreadyCompletedExceptionwith the specified detail message and cause.Constructs anAlreadyCompletedExceptionwith the specified 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
-
AlreadyCompletedException
Constructs anAlreadyCompletedExceptionwith the specified detail message.- Parameters:
s- the String that contains a detailed message.
-
AlreadyCompletedException
Constructs anAlreadyCompletedExceptionwith 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.)
-
AlreadyCompletedException
Constructs anAlreadyCompletedExceptionwith the specified cause.- Parameters:
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.)
-