PlotSquared/src/main/java/com/intellectualcrafters/configuration/InvalidConfigurationException.java

51 lines
1.2 KiB
Java
Raw Normal View History

2015-07-05 12:51:34 +02:00
package com.intellectualcrafters.configuration;
/**
* Exception thrown when attempting to load an invalid {@link Configuration}
*/
@SuppressWarnings("serial")
2015-09-11 12:09:22 +02:00
public class InvalidConfigurationException extends Exception
{
2015-07-05 12:51:34 +02:00
/**
* Creates a new instance of InvalidConfigurationException without a
* message or cause.
*/
2015-09-11 12:09:22 +02:00
public InvalidConfigurationException()
{}
2015-07-05 12:51:34 +02:00
/**
* Constructs an instance of InvalidConfigurationException with the
* specified message.
*
* @param msg The details of the exception.
*/
2015-09-11 12:09:22 +02:00
public InvalidConfigurationException(final String msg)
{
2015-07-05 12:51:34 +02:00
super(msg);
}
/**
* Constructs an instance of InvalidConfigurationException with the
* specified cause.
*
* @param cause The cause of the exception.
*/
2015-09-11 12:09:22 +02:00
public InvalidConfigurationException(final Throwable cause)
{
2015-07-05 12:51:34 +02:00
super(cause);
}
/**
* Constructs an instance of InvalidConfigurationException with the
* specified message and cause.
*
* @param cause The cause of the exception.
* @param msg The details of the exception.
*/
2015-09-11 12:09:22 +02:00
public InvalidConfigurationException(final String msg, final Throwable cause)
{
2015-07-05 12:51:34 +02:00
super(msg, cause);
}
}