blob: a2146522bbb85c6b08cd90f437ac2ea64dcdffe3 [file] [log] [blame]
package org.bouncycastle.operator;
public class OperatorException
extends Exception
{
private Throwable cause;
public OperatorException(String msg, Throwable cause)
{
super(msg);
this.cause = cause;
}
public OperatorException(String msg)
{
super(msg);
}
public Throwable getCause()
{
return cause;
}
}