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