Class InvalidConfigurationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.bspfsystems.yamlconfiguration.configuration.InvalidConfigurationException
All Implemented Interfaces:
Serializable

public final class InvalidConfigurationException extends Exception
An exception thrown when attempting to load an invalid configuration.

Synchronized with the commit on 15-December-2013.

See Also:
  • Constructor Details

    • InvalidConfigurationException

      public InvalidConfigurationException()
      Constructs an exception without a message or cause.
      See Also:
    • InvalidConfigurationException

      public InvalidConfigurationException(@NotNull @NotNull String message)
      Constructs an exception with a message.
      Parameters:
      message - The details of the exception.
      See Also:
    • InvalidConfigurationException

      public InvalidConfigurationException(@NotNull @NotNull Throwable cause)
      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: