Class ExecutionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.societegenerale.failover.aspect.ExecutionException
- All Implemented Interfaces:
Serializable
Wraps a
Throwable thrown during the actual method execution inside the failover aspect.- Author:
- Anand Manissery
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionExecutionException(String message, Throwable cause) Creates an exception with the given 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
-
ExecutionException
Creates an exception with the given detail message and cause.- Parameters:
message- description of the execution failurecause- the original throwable from the method invocation
-