blob: 5ea09e80ee803ede29fe501c0c693a71c355bf11 [file] [log] [blame]
package org.bouncycastle.util;
public class StoreException
extends RuntimeException
{
private Throwable _e;
public StoreException(String s, Throwable e)
{
super(s);
_e = e;
}
public Throwable getCause()
{
return _e;
}
}