blob: 3bc820f3d4a2db5b008a78b64784d79511d35022 [file] [log] [blame]
package org.bouncycastle.jce.provider;
import java.security.cert.CRLException;
class ExtCRLException
extends CRLException
{
Throwable cause;
ExtCRLException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}