blob: 0be66dbca79bf34671e056d6d880132ad152447e [file] [log] [blame]
package org.bouncycastle.tsp;
import java.io.IOException;
public class TSPIOException
extends IOException
{
Throwable underlyingException;
public TSPIOException(String message)
{
super(message);
}
public TSPIOException(String message, Throwable e)
{
super(message);
underlyingException = e;
}
public Exception getUnderlyingException()
{
return (Exception)underlyingException;
}
public Throwable getCause()
{
return underlyingException;
}
}