Package dev.roanh.gmark.exception
Class ConfigException
java.lang.Object
java.lang.Throwable
java.lang.Exception
dev.roanh.gmark.exception.ConfigException
- All Implemented Interfaces:
Serializable
Exception throw when there are issues
parsing a configuration file.
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionConfigException
(String msg) Construts a new configuration exception with the given exception message.ConfigException
(Throwable cause) Constructs a new configuration exception with the given root cause exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial ID.- See Also:
-
-
Constructor Details
-
ConfigException
Constructs a new configuration exception with the given root cause exception.- Parameters:
cause
- The original exception.
-
ConfigException
Construts a new configuration exception with the given exception message.- Parameters:
msg
- The exception message.
-