blob: a899acdd9935a8432230e042511bcb7d5be01aa4 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.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;
}
}