01: package org.bouncycastle.jce.exception;
02:
03: import java.security.cert.CertPath;
04: import java.security.cert.CertPathBuilderException;
05:
06: public class ExtCertPathBuilderException extends
07: CertPathBuilderException implements ExtException {
08: private Throwable cause;
09:
10: public ExtCertPathBuilderException(String message, Throwable cause) {
11: super (message);
12: this .cause = cause;
13: }
14:
15: public ExtCertPathBuilderException(String msg, Throwable cause,
16: CertPath certPath, int index) {
17: super (msg, cause);
18: this .cause = cause;
19: }
20:
21: public Throwable getCause() {
22: return cause;
23: }
24: }
|