Class ResourceLoadException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
de.gurkenlabs.litiengine.resources.ResourceLoadException
- All Implemented Interfaces:
Serializable
Exception thrown when a resource fails to load.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new ResourceLoadException withnullas its detail message.ResourceLoadException(String message) Constructs a new ResourceLoadException with the specified detail message.ResourceLoadException(String message, Throwable cause) Constructs a new ResourceLoadException with the specified detail message and cause.ResourceLoadException(Throwable cause) Constructs a new ResourceLoadException with the specified cause. -
Method Summary
Methods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
ResourceLoadException
public ResourceLoadException()Constructs a new ResourceLoadException withnullas its detail message. -
ResourceLoadException
Constructs a new ResourceLoadException with the specified detail message.- Parameters:
message- The detail message.
-
ResourceLoadException
Constructs a new ResourceLoadException with the specified cause.- Parameters:
cause- The cause of the exception.
-
ResourceLoadException
-