blob: 67db2073cd7067e620f026df43179d4977a10049 [file] [log] [blame]
package org.bouncycastle.openssl;
public class EncryptionException
extends PEMException
{
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;
}
}