Class PermissionManagerLoadException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
me.github.simonplays15.betterbansystem.api.exceptions.PermissionManagerLoadException
All Implemented Interfaces:
Serializable

public class PermissionManagerLoadException extends RuntimeException
The PermissionManagerLoadException class represents an exception thrown when there is an error loading the PermissionManager.
See Also:
  • 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

      public PermissionManagerLoadException (String message)
      PermissionManagerLoadException represents an exception thrown when there is an error loading the PermissionManager.
    • PermissionManagerLoadException

      public PermissionManagerLoadException (String msg, Throwable throwable)
      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.