Package civitas.celestis.exception.gpu
Class GraphicsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
civitas.celestis.exception.gpu.GraphicsException
- All Implemented Interfaces:
Serializable
A graphics exception is thrown when a GPU accelerated operation
was unable to complete successfully.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new graphics exception with no cause and no message.GraphicsException(String message) Creates a new graphics exception with no cause.GraphicsException(String message, Throwable cause) Creates a new graphics exception.GraphicsException(Throwable cause) Creates a new graphics exception with no message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
GraphicsException
public GraphicsException()Creates a new graphics exception with no cause and no message. -
GraphicsException
Creates a new graphics exception with no cause.- Parameters:
message- The message of this exception
-
GraphicsException
Creates a new graphics exception.- Parameters:
message- The message of this exceptioncause- The cause of this exception
-
GraphicsException
Creates a new graphics exception with no message.- Parameters:
cause- The cause of this exception
-