Class ConnectionFailedException

  • All Implemented Interfaces:
    java.io.Serializable

    @ThreadSafe
    public final class ConnectionFailedException
    extends AlluxioException
    Exception used when a network connection failure occurs. Examples include network connection timeout, connection refuse, host unreachable.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      ConnectionFailedException​(ExceptionMessage message, java.lang.Object... params)
      Constructs a new exception with the specified exception message and multiple parameters.
      ConnectionFailedException​(ExceptionMessage message, java.lang.Throwable cause, java.lang.Object... params)
      Constructs a new exception with the specified exception message, the cause and multiple parameters.
      ConnectionFailedException​(java.lang.String message)
      Constructs a new exception with the specified detail message.
      ConnectionFailedException​(java.lang.String message, java.lang.Throwable cause)
      Constructs a new exception with the specified 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
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ConnectionFailedException

        public ConnectionFailedException​(java.lang.String message)
        Constructs a new exception with the specified detail message.
        Parameters:
        message - the detail message
      • ConnectionFailedException

        public ConnectionFailedException​(java.lang.String message,
                                         java.lang.Throwable cause)
        Constructs a new exception with the specified detail message and cause.
        Parameters:
        message - the detail message
        cause - the cause
      • ConnectionFailedException

        public ConnectionFailedException​(ExceptionMessage message,
                                         java.lang.Object... params)
        Constructs a new exception with the specified exception message and multiple parameters.
        Parameters:
        message - the exception message
        params - the parameters
      • ConnectionFailedException

        public ConnectionFailedException​(ExceptionMessage message,
                                         java.lang.Throwable cause,
                                         java.lang.Object... params)
        Constructs a new exception with the specified exception message, the cause and multiple parameters.
        Parameters:
        message - the exception message
        cause - the cause
        params - the parameters