org.bouncycastle.tsp.TSPException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bctsp-jdk16 Show documentation
Show all versions of bctsp-jdk16 Show documentation
The Bouncy Castle Java API for handling the Time Stamp Protocol (TSP). This jar contains the TSP API for JDK 1.6. The APIs can be used in conjunction with a JCE/JCA provider such as the one provided with the Bouncy Castle Cryptography APIs.
The newest version!
package org.bouncycastle.tsp;
public class TSPException
extends Exception
{
Exception underlyingException;
public TSPException(String message)
{
super(message);
}
public TSPException(String message, Exception e)
{
super(message);
underlyingException = e;
}
public Exception getUnderlyingException()
{
return underlyingException;
}
public Throwable getCause()
{
return underlyingException;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy