Package dev.polv.taleapi.config
Class ConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
dev.polv.taleapi.config.ConfigException
- All Implemented Interfaces:
Serializable
Exception thrown when configuration operations fail.
This exception wraps underlying I/O and parsing errors that may occur during configuration loading, saving, or parsing operations.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConfigException(String message) Constructs a new ConfigException with the specified message.ConfigException(String message, Throwable cause) Constructs a new ConfigException with the specified message and cause.ConfigException(Throwable cause) Constructs a new ConfigException 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
-
ConfigException
Constructs a new ConfigException with the specified message.- Parameters:
message- the detail message
-
ConfigException
Constructs a new ConfigException with the specified message and cause.- Parameters:
message- the detail messagecause- the underlying cause
-
ConfigException
Constructs a new ConfigException with the specified cause.- Parameters:
cause- the underlying cause
-