blob: b8395681a9a110b14c8196fd21c3390198a5b7de [file] [log] [blame]
package org.bouncycastle.openssl;
import java.io.IOException;
public class EncryptionException
extends IOException
{
private Throwable cause;
public EncryptionException(String msg)
{
super(msg);
}
public EncryptionException(String msg, Throwable ex)
{
super(msg);
this.cause = ex;
}
public Throwable getCause()
{
return cause;
}
}