Class TimeoutException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.apache.hadoop.hbase.errorhandling.TimeoutException
All Implemented Interfaces:
Serializable

@Public public class TimeoutException extends Exception
Exception for timeout of a task.
See Also:
  • Field Details

  • Constructor Details

    • TimeoutException

      public TimeoutException(String sourceName, long start, long end, long expected)
      Exception indicating that an operation attempt has timed out
      Parameters:
      start - time the operation started (ms since epoch)
      end - time the timeout was triggered (ms since epoch)
      expected - expected amount of time for the operation to complete (ms) (ideally, expected <= end-start)
  • Method Details