Package wizardquest.telemetry
Class UserValidationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wizardquest.telemetry.UserValidationException
- All Implemented Interfaces:
Serializable
Exception representing an issue relating to an incorrect userID for
telemetry.
The userID does not match what is expected for the session.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionThrow the exception without a message or causeUserValidationException(String message) Throws the exception with a message to be displayed to the developer.UserValidationException(String message, Throwable cause) Throws the exception with a message to be displayed to the developer and a cause for the exception being thrown. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UserValidationException
public UserValidationException()Throw the exception without a message or cause -
UserValidationException
Throws the exception with a message to be displayed to the developer.- Parameters:
message- the message to display.
-
UserValidationException
Throws the exception with a message to be displayed to the developer and a cause for the exception being thrown.- Parameters:
message- the message to display.cause- the cause for the exception.
-