1package org.bouncycastle.util;
2
3public class StoreException
4    extends RuntimeException
5{
6    private Throwable _e;
7
8    public StoreException(String s, Throwable e)
9    {
10        super(s);
11        _e = e;
12    }
13
14    public Throwable getCause()
15    {
16        return _e;
17    }
18}
19