01: package org.bouncycastle.jce.exception;
02:
03: import java.io.IOException;
04:
05: public class ExtIOException extends IOException implements ExtException {
06: private Throwable cause;
07:
08: public ExtIOException(String message, Throwable cause) {
09: super (message);
10: this .cause = cause;
11: }
12:
13: public Throwable getCause() {
14: return cause;
15: }
16: }
|