blob: b51738faef395de868b8d6b6be8d4d83efcf1c67 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.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;
}
}