blob: 509d4be3f7f6766f040249f40410801bf599f643 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.operator;
/**
* @hide This class is not part of the Android public SDK API
*/
public class RuntimeOperatorException
extends RuntimeException
{
private Throwable cause;
public RuntimeOperatorException(String msg)
{
super(msg);
}
public RuntimeOperatorException(String msg, Throwable cause)
{
super(msg);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}