01: package org.bouncycastle.util; 02: 03: public class StreamParsingException extends Exception { 04: Throwable _e; 05: 06: public StreamParsingException(String message, Throwable e) { 07: super (message); 08: _e = e; 09: } 10: 11: public Throwable getCause() { 12: return _e; 13: } 14: }