Class PermissionManagerLoadException
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThe PermissionManagerLoadException class represents an exception thrown when there is an error loading the PermissionManager.PermissionManagerLoadException
(String message) PermissionManagerLoadException represents an exception thrown when there is an error loading the PermissionManager.PermissionManagerLoadException
(String msg, Throwable throwable) Constructs a PermissionManagerLoadException with the specified error message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
PermissionManagerLoadException
public PermissionManagerLoadException()The PermissionManagerLoadException class represents an exception thrown when there is an error loading the PermissionManager.This exception is a subclass of the RuntimeException class, which means it is an unchecked exception.
This class provides an empty constructor that can be used to create an instance of the exception without an error message. It can be thrown wherever a PermissionManagerLoadException is expected to occur.
An instance of this exception can be created using the default constructor like this: PermissionManagerLoadException exception = new PermissionManagerLoadException();
- Since:
- 1.0
-
PermissionManagerLoadException
PermissionManagerLoadException represents an exception thrown when there is an error loading the PermissionManager. -
PermissionManagerLoadException
Constructs a PermissionManagerLoadException with the specified error message and cause.- Parameters:
msg
- the detail message (which is saved for later retrieval by the getMessage() method). It should provide information about the cause of the exception.throwable
- the cause (which is saved for later retrieval by the getCause() method). A null value is permitted and indicates that the cause is nonexistent or unknown.
-