Class UpdateTileContentException
java.lang.Object
java.lang.Throwable
java.lang.Exception
tech.underoaks.coldcase.state.tileContent.UpdateTileContentException
- All Implemented Interfaces:
Serializable
Exception thrown when a GameStateUpdate fails.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUpdateTileContentException(String message) Constructs a new GameStateUpdateException with the specified detail message.UpdateTileContentException(String message, Throwable cause) Constructs a new GameStateUpdateException with the specified detail message and 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
-
UpdateTileContentException
Constructs a new GameStateUpdateException with the specified detail message.- Parameters:
message- The detail message.
-
UpdateTileContentException
Constructs a new GameStateUpdateException with the specified detail message and cause.- Parameters:
message- The detail message.cause- The cause of the exception.
-