Class PermissionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.nomagic.magicdraw.esi.persistence.security.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 newPermissionException
instance.PermissionException(java.lang.String message)
Creates and initializes a newPermissionException
instance from the specified parameter.PermissionException(java.lang.String message, java.lang.Throwable cause)
Creates and initializes a newPermissionException
instance from the specified parameters.protected
PermissionException(java.lang.String message, java.lang.Throwable cause, boolean enableSuppression, boolean writableStackTrace)
Creates and initializes a newPermissionException
instance from the specified parameters.PermissionException(java.lang.Throwable cause)
Creates and initializes a newPermissionException
instance from the specified parameters.
-
-
-
Constructor Detail
-
PermissionException
public PermissionException()
Creates and initializes a newPermissionException
instance.
-
PermissionException
public PermissionException(java.lang.String message)
Creates and initializes a newPermissionException
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 newPermissionException
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 newPermissionException
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 newPermissionException
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.
-
-