Class PermissionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
com.nomagic.magicdraw.esi.persistence.security.PermissionException
All Implemented Interfaces:
Serializable

@OpenApiAll public class PermissionException extends Exception
Signals that a problem occurred during permissions set/get.
Version:
1.0
See Also:
  • Constructor Details

    • PermissionException

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

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

      public PermissionException(String message, 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(Throwable cause)
      Creates and initializes a new PermissionException instance from the specified parameters.
      Parameters:
      cause - a cause of the problem.
    • PermissionException

      protected PermissionException(String message, 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.