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