Package org.bukkit.configuration
Class InvalidConfigurationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.bukkit.configuration.InvalidConfigurationException
- All Implemented Interfaces:
java.io.Serializable
public class InvalidConfigurationException
extends java.lang.Exception
Exception thrown when attempting to load an invalid
Configuration
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description InvalidConfigurationException()
Creates a new instance of InvalidConfigurationException without a message or cause.InvalidConfigurationException(java.lang.String msg)
Constructs an instance of InvalidConfigurationException with the specified message.InvalidConfigurationException(java.lang.String msg, java.lang.Throwable cause)
Constructs an instance of InvalidConfigurationException with the specified message and cause.InvalidConfigurationException(java.lang.Throwable cause)
Constructs an instance of InvalidConfigurationException with the specified cause. -
Method Summary
-
Constructor Details
-
InvalidConfigurationException
public InvalidConfigurationException()Creates a new instance of InvalidConfigurationException without a message or cause. -
InvalidConfigurationException
public InvalidConfigurationException(java.lang.String msg)Constructs an instance of InvalidConfigurationException with the specified message.- Parameters:
msg
- The details of the exception.
-
InvalidConfigurationException
public InvalidConfigurationException(java.lang.Throwable cause)Constructs an instance of InvalidConfigurationException with the specified cause.- Parameters:
cause
- The cause of the exception.
-
InvalidConfigurationException
public InvalidConfigurationException(java.lang.String msg, java.lang.Throwable cause)Constructs an instance of InvalidConfigurationException with the specified message and cause.- Parameters:
cause
- The cause of the exception.msg
- The details of the exception.
-