java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.helidon.faulttolerance.FaultToleranceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
BulkheadException
,CircuitBreakerOpenException
,TimeoutException
A fault-tolerance exception.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionFaultToleranceException
(String message) Create a new instance with customized message.FaultToleranceException
(String message, Throwable cause) Create a new instance with customized 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
-
FaultToleranceException
Create a new instance with customized message.- Parameters:
message
- error message
-
FaultToleranceException
Create a new instance with customized message and cause.- Parameters:
message
- error messagecause
- the cause of this exception
-