Package org.bukkit.configuration
Class InvalidConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.bukkit.configuration.InvalidConfigurationException
- All Implemented Interfaces:
- Serializable
Exception thrown when attempting to load an invalid 
Configuration- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreates a new instance of InvalidConfigurationException without a message or cause.Constructs an instance of InvalidConfigurationException with the specified message.InvalidConfigurationException(String msg, Throwable cause) Constructs an instance of InvalidConfigurationException with the specified message and cause.Constructs an instance of InvalidConfigurationException with the specified cause.
- 
Method SummaryMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvalidConfigurationExceptionpublic InvalidConfigurationException()Creates a new instance of InvalidConfigurationException without a message or cause.
- 
InvalidConfigurationExceptionConstructs an instance of InvalidConfigurationException with the specified message.- Parameters:
- msg- The details of the exception.
 
- 
InvalidConfigurationExceptionConstructs an instance of InvalidConfigurationException with the specified cause.- Parameters:
- cause- The cause of the exception.
 
- 
InvalidConfigurationExceptionConstructs an instance of InvalidConfigurationException with the specified message and cause.- Parameters:
- msg- The details of the exception.
- cause- The cause of the exception.
 
 
-