blob: e3c33d801fe2567947fbb5df984e7031efcb7eca [file] [log] [blame]
package org.bouncycastle.jce.exception;
import java.security.cert.CertificateEncodingException;
public class ExtCertificateEncodingException
extends CertificateEncodingException
implements ExtException
{
private Throwable cause;
public ExtCertificateEncodingException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}