01: package org.bouncycastle.x509;
02:
03: import java.security.cert.CertificateEncodingException;
04:
05: class ExtCertificateEncodingException extends
06: CertificateEncodingException {
07: Throwable cause;
08:
09: ExtCertificateEncodingException(String message, Throwable cause) {
10: super (message);
11: this .cause = cause;
12: }
13:
14: public Throwable getCause() {
15: return cause;
16: }
17: }
|