Class RegisterLeaseNotFoundException

  • All Implemented Interfaces:
    java.io.Serializable

    public class RegisterLeaseNotFoundException
    extends AlluxioException
    The exception thrown when the worker attempts to register but there is no lease found. The worker might have acquired a lease but that has expired and been recycled. Or the worker did not acquire a lease at all.
    See Also:
    Serialized Form
    • 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

      • RegisterLeaseNotFoundException

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

        public RegisterLeaseNotFoundException​(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
      • RegisterLeaseNotFoundException

        public RegisterLeaseNotFoundException​(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
      • RegisterLeaseNotFoundException

        public RegisterLeaseNotFoundException​(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