Class PermissionException

  • All Implemented Interfaces:
    java.io.Serializable

    @OpenApiAll
    public class PermissionException
    extends java.lang.Exception
    Signals that a problem occurred during permissions set/get.
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
        PermissionException()
      Creates and initializes a new PermissionException instance.
        PermissionException​(java.lang.String message)
      Creates and initializes a new PermissionException instance from the specified parameter.
        PermissionException​(java.lang.String message, java.lang.Throwable cause)
      Creates and initializes a new PermissionException instance from the specified parameters.
      protected PermissionException​(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
      Creates and initializes a new PermissionException instance from the specified parameters.
        PermissionException​(java.lang.Throwable cause)
      Creates and initializes a new PermissionException instance from the specified parameters.
    • 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

      • PermissionException

        public PermissionException()
        Creates and initializes a new PermissionException instance.
      • PermissionException

        public PermissionException​(java.lang.String message)
        Creates and initializes a new PermissionException instance from the specified parameter.
        Parameters:
        message - an error message.
      • PermissionException

        public PermissionException​(java.lang.String message,
                                   java.lang.Throwable cause)
        Creates and initializes a new PermissionException instance from the specified parameters.
        Parameters:
        cause - a cause of the problem.
        message - an error message.
      • PermissionException

        public PermissionException​(java.lang.Throwable cause)
        Creates and initializes a new PermissionException instance from the specified parameters.
        Parameters:
        cause - a cause of the problem.
      • PermissionException

        protected PermissionException​(java.lang.String message,
                                      java.lang.Throwable cause,
                                      boolean enableSuppression,
                                      boolean writableStackTrace)
        Creates and initializes a new PermissionException instance from the specified parameters.
        Parameters:
        message - an error message.
        cause - a cause of the problem.
        enableSuppression - whether or not suppression is enabled or disabled.
        writableStackTrace - whether or not the stack trace should be writable.