Class XMLLoadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.stefvanschie.inventoryframework.exception.XMLLoadException
- All Implemented Interfaces:
Serializable
An exception indicating that something went wrong while trying to load a
Gui
from an XML file.- Since:
- 0.3.0
- See Also:
-
Constructor Summary
ConstructorDescriptionXMLLoadException
(@NotNull String message) Constructs the exception with a given messageXMLLoadException
(@NotNull String message, @NotNull Throwable cause) Constructs the exception with a given message and causeXMLLoadException
(@NotNull Throwable cause) Constructs the exception with a given 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
-
XMLLoadException
Constructs the exception with a given message- Parameters:
message
- the message to show- Since:
- 0.3.0
-
XMLLoadException
Constructs the exception with a given cause- Parameters:
cause
- the cause of this exception- Since:
- 0.3.1
-
XMLLoadException
Constructs the exception with a given message and cause- Parameters:
message
- the message to showcause
- the cause of this exception
-