Class TimestampValidationException

java.lang.Object
java.lang.Throwable
java.lang.Exception
wizardquest.telemetry.TimestampValidationException
All Implemented Interfaces:
Serializable

public class TimestampValidationException extends Exception
Exception representing an issue relating to an incorrect time stamp for telemetry. The time stamp is in the future, or is of invalid format.
See Also:
  • Constructor Details

    • TimestampValidationException

      public TimestampValidationException()
      Throw the exception without a message or cause
    • TimestampValidationException

      public TimestampValidationException(String message)
      Throws the exception with a message to be displayed to the developer.
      Parameters:
      message - the message to display.
    • TimestampValidationException

      public TimestampValidationException(String message, Throwable cause)
      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.