Class OperationTimedOutException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.pnfsoftware.jeb.util.concurrent.OperationTimedOutException
All Implemented Interfaces:
Serializable

public class OperationTimedOutException extends RuntimeException
This exception can be raised when an operation timed out before completion.
See Also:
  • Constructor Details

    • OperationTimedOutException

      public OperationTimedOutException()
      Create a timeout exception without detail message or cause.
    • OperationTimedOutException

      public OperationTimedOutException(String message)
      Create a timeout exception with a detail message.
      Parameters:
      message - detail message
    • OperationTimedOutException

      public OperationTimedOutException(Throwable cause)
      Create a timeout exception with a cause.
      Parameters:
      cause - cause of this exception
    • OperationTimedOutException

      public OperationTimedOutException(String message, Throwable cause)
      Create a timeout exception with a detail message and cause.
      Parameters:
      message - detail message
      cause - cause of this exception