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