Package space.arim.dazzleconf.error
Class InvalidConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
space.arim.dazzleconf.error.InvalidConfigException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ConfigFormatSyntaxException,ImproperEntryException
Thrown to indicate an invalid configuration
- Author:
- A248
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates the exceptionInvalidConfigException(String message) Creates the exception with an exception messageInvalidConfigException(String message, Throwable cause) Creates the exception with an exception message and causeInvalidConfigException(Throwable cause) Creates the exception with a 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
-
InvalidConfigException
public InvalidConfigException()Creates the exception -
InvalidConfigException
Creates the exception with an exception message- Parameters:
message- the message
-
InvalidConfigException
Creates the exception with a cause- Parameters:
cause- the cause
-
InvalidConfigException
Creates the exception with an exception message and cause- Parameters:
message- the messagecause- the cause
-