Class InvalidConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.bspfsystems.yamlconfiguration.configuration.InvalidConfigurationException
- All Implemented Interfaces:
Serializable
An exception thrown when attempting to load an invalid configuration.
Synchronized with the commit on 15-December-2013.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an exception without a message or cause.InvalidConfigurationException(@NotNull String message) Constructs an exception with a message.InvalidConfigurationException(@NotNull String message, @NotNull Throwable cause) Constructs an exception with a message and upstream cause.InvalidConfigurationException(@NotNull Throwable cause) Constructs an exception with an upstream 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
-
InvalidConfigurationException
public InvalidConfigurationException()Constructs an exception without a message or cause.- See Also:
-
InvalidConfigurationException
Constructs an exception with a message.- Parameters:
message- The details of the exception.- See Also:
-
InvalidConfigurationException
Constructs an exception with an upstream cause.- Parameters:
cause- The cause of the new exception.- See Also:
-
InvalidConfigurationException
public InvalidConfigurationException(@NotNull @NotNull String message, @NotNull @NotNull Throwable cause) Constructs an exception with a message and upstream cause.- Parameters:
message- The details of the exception.cause- The cause of the new exception.- See Also:
-