Class MenuManagerNotSetupException
java.lang.Object
java.lang.Throwable
java.lang.Exception
dev.oumaimaa.kawaiiapi.exceptions.MenuManagerNotSetupException
- All Implemented Interfaces:
Serializable
Exception thrown when the Menu Manager has not been properly initialized.
This typically occurs when attempting to use menu functions before calling MenuManager.setup().
- Version:
- 1.0
- Author:
- KawaiiDevelopment
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new MenuManagerNotSetupException with a default message.MenuManagerNotSetupException(@NotNull String message) Constructs a new MenuManagerNotSetupException with a custom message.MenuManagerNotSetupException(@NotNull String message, @Nullable Throwable cause) Constructs a new MenuManagerNotSetupException with a 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
-
MenuManagerNotSetupException
public MenuManagerNotSetupException()Constructs a new MenuManagerNotSetupException with a default message. -
MenuManagerNotSetupException
Constructs a new MenuManagerNotSetupException with a custom message.- Parameters:
message- The detail message
-
MenuManagerNotSetupException
-