Class YamlMurmelException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.murmelmeister.library.exceptions.YamlMurmelException
- All Implemented Interfaces:
Serializable
This class represents an exception thrown when there is an error related to YAML operations in the Murmel library.
It extends
RuntimeException to allow for unchecked exceptions that can be thrown during runtime.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionYamlMurmelException(String message) Constructs a new YamlMurmelException with the specified detail message.YamlMurmelException(String message, Throwable cause) Constructs a new YamlMurmelException with the specified detail message and cause.YamlMurmelException(Throwable cause) Constructs a new YamlMurmelException with the specified 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
-
YamlMurmelException
Constructs a new YamlMurmelException with the specified detail message.- Parameters:
message- The detail message for this exception
-
YamlMurmelException
Constructs a new YamlMurmelException with the specified detail message and cause.- Parameters:
message- The detail message for this exception.cause- The cause of the exception, which can be retrieved later via theThrowable.getCause()method.
-
YamlMurmelException
Constructs a new YamlMurmelException with the specified cause.- Parameters:
cause- The cause of the exception, which can be retrieved later via theThrowable.getCause()method.
-