Class TimeoutException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ConcurrencyLimitTimeoutException, DnsTimeoutException, RequestTimeoutException, ResponseTimeoutException, WriteTimeoutException

public class TimeoutException extends CancellationException
A RuntimeException raised when a requested invocation does not complete before its deadline.
See Also:
Serialized Form
  • Constructor Details

    • TimeoutException

      public TimeoutException()
      Creates a new exception.
    • TimeoutException

      public TimeoutException(@Nullable @Nullable String message)
      Creates a new instance with the specified message.
    • TimeoutException

      public TimeoutException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause)
      Creates a new instance with the specified message and cause.
    • TimeoutException

      public TimeoutException(@Nullable @Nullable Throwable cause)
      Creates a new instance with the specified cause.
    • TimeoutException

      protected TimeoutException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Creates a new instance with the specified message, cause, suppression enabled or disabled, and writable stack trace enabled or disabled.