Class UnavailableException

  • All Implemented Interfaces:
    java.io.Serializable

    public class UnavailableException
    extends AlluxioStatusException
    Exception indicating that the service is currently unavailable. This is a most likely a transient condition and may be corrected by retrying with a backoff. See litmus test in FailedPreconditionException for deciding between FailedPreconditionException, AbortedException, and UnavailableException.
    See Also:
    Serialized Form
    • Constructor Detail

      • UnavailableException

        public UnavailableException​(java.lang.String message)
        Parameters:
        message - the exception message
      • UnavailableException

        public UnavailableException​(java.lang.Throwable cause)
        Parameters:
        cause - the cause of the exception
      • UnavailableException

        public UnavailableException​(java.lang.String message,
                                    java.lang.Throwable cause)
        Parameters:
        message - the exception message
        cause - the cause of the exception