blob: b684053c73b8014640dfaed0e0b3a3cd8e582aa0 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.org.bouncycastle.cert;
/**
* General checked Exception thrown in the cert package and its sub-packages.
* @hide This class is not part of the Android public SDK API
*/
public class CertException
extends Exception
{
private Throwable cause;
public CertException(String msg, Throwable cause)
{
super(msg);
this.cause = cause;
}
public CertException(String msg)
{
super(msg);
}
public Throwable getCause()
{
return cause;
}
}