Class OperationTimedOutException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pnfsoftware.jeb.util.concurrent.OperationTimedOutException
- All Implemented Interfaces:
Serializable
This exception can be raised when an operation timed out before completion.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreate a timeout exception without detail message or cause.OperationTimedOutException(String message) Create a timeout exception with a detail message.OperationTimedOutException(String message, Throwable cause) Create a timeout exception with a detail message and cause.Create a timeout exception with a 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
-
OperationTimedOutException
public OperationTimedOutException()Create a timeout exception without detail message or cause. -
OperationTimedOutException
Create a timeout exception with a detail message.- Parameters:
message- detail message
-
OperationTimedOutException
Create a timeout exception with a cause.- Parameters:
cause- cause of this exception
-
OperationTimedOutException
Create a timeout exception with a detail message and cause.- Parameters:
message- detail messagecause- cause of this exception
-