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