StoreException.java revision e6bf3e8dfa2804891a82075cb469b736321b4827
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