blob: 27132dee7dc3321aeb42b6d8cf126a7968476487 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.x509;
import java.security.cert.CertificateEncodingException;
class ExtCertificateEncodingException
extends CertificateEncodingException
{
Throwable cause;
ExtCertificateEncodingException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}