blob: 5384148af31c2987c71af34948c0eeb818431b4a [file] [log] [blame]
package org.bouncycastle.cert;
public class CertRuntimeException
extends RuntimeException
{
private Throwable cause;
public CertRuntimeException(String msg, Throwable cause)
{
super(msg);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}