blob: 12be0e1bc3abfaecdf259c59e2916f38648dc023 [file] [log] [blame]
package org.bouncycastle.tsp;
/**
* Exception thrown if an Archive TimeStamp according to RFC4998 fails to containsHashValue.
* <p>
* {@see <a href="https://tools.ietf.org/html/rfc4998">RFC4998</a>}
*/
public class ArchiveTimeStampValidationException
extends Exception
{
public ArchiveTimeStampValidationException(final String message)
{
super(message);
}
}