01: package org.bouncycastle.cms;
02:
03: public class CMSAttributeTableGenerationException extends
04: CMSRuntimeException {
05: Exception e;
06:
07: public CMSAttributeTableGenerationException(String name) {
08: super (name);
09: }
10:
11: public CMSAttributeTableGenerationException(String name, Exception e) {
12: super (name);
13:
14: this .e = e;
15: }
16:
17: public Exception getUnderlyingException() {
18: return e;
19: }
20:
21: public Throwable getCause() {
22: return e;
23: }
24: }
|