1 package org.bouncycastle.x509;
2 
3 import java.security.cert.CertificateEncodingException;
4 
5 class ExtCertificateEncodingException
6     extends CertificateEncodingException
7 {
8     Throwable cause;
9 
ExtCertificateEncodingException(String message, Throwable cause)10     ExtCertificateEncodingException(String message, Throwable cause)
11     {
12         super(message);
13         this.cause = cause;
14     }
15 
getCause()16     public Throwable getCause()
17     {
18         return cause;
19     }
20 }
21