~brian-thomason/+junk/bouncycastle

« back to all changes in this revision

Viewing changes to src/org/bouncycastle/jce/exception/ExtCertificateEncodingException.java

  • Committer: Brian Thomason
  • Date: 2011-12-20 17:20:32 UTC
  • Revision ID: brian.thomason@canonical.com-20111220172032-rdtm13jgdxtksacr
Initial import

Show diffs side-by-side

added added

removed removed

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