Class GuiIORuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
io.github.toberocat.guiengine.exception.GuiIORuntimeException
- All Implemented Interfaces:
Serializable
Represents a runtime exception that occurs during GUI I/O operations in the GUI engine.
Created: 05/02/2023 Author: Tobias Madlberger (Tobias)
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionGuiIORuntimeException
(String message) Constructs a new `GuiIORuntimeException` with the specified error message.GuiIORuntimeException
(Throwable cause) Constructs a new `GuiIORuntimeException` 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
-
GuiIORuntimeException
Constructs a new `GuiIORuntimeException` with the specified error message.- Parameters:
message
- The error message for the exception.
-
GuiIORuntimeException
Constructs a new `GuiIORuntimeException` with the specified cause.- Parameters:
cause
- The cause of the exception.
-