Class MenuManagerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
dev.oumaimaa.kawaiiapi.exceptions.MenuManagerException
- All Implemented Interfaces:
Serializable
Exception thrown when an error occurs within the Menu Manager system.
- Version:
- 1.0
- Author:
- KawaiiDevelopment
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionConstructs a new MenuManagerException with no detail message.MenuManagerException(@Nullable String message) Constructs a new MenuManagerException with the specified detail message.MenuManagerException(@Nullable String message, @Nullable Throwable cause) Constructs a new MenuManagerException with the specified detail message and cause.protectedMenuManagerException(@Nullable String message, @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new MenuManagerException with all exception details.MenuManagerException(@Nullable Throwable cause) Constructs a new MenuManagerException with the specified 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
-
MenuManagerException
public MenuManagerException()Constructs a new MenuManagerException with no detail message. -
MenuManagerException
Constructs a new MenuManagerException with the specified detail message.- Parameters:
message- The detail message
-
MenuManagerException
-
MenuManagerException
Constructs a new MenuManagerException with the specified cause.- Parameters:
cause- The cause of this exception
-
MenuManagerException
protected MenuManagerException(@Nullable @Nullable String message, @Nullable @Nullable Throwable cause, boolean enableSuppression, boolean writableStackTrace) Constructs a new MenuManagerException with all exception details.- Parameters:
message- The detail messagecause- The cause of this exceptionenableSuppression- Whether suppression is enabledwritableStackTrace- Whether the stack trace should be writable
-