blob: 7541386f047b28f528309441f5cc8b264bc749aa [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.org.bouncycastle.jce.exception;
import java.security.cert.CertPath;
import java.security.cert.CertPathValidatorException;
/**
* @hide This class is not part of the Android public SDK API
*/
public class ExtCertPathValidatorException
extends CertPathValidatorException
implements ExtException
{
private Throwable cause;
public ExtCertPathValidatorException(String message)
{
super(message);
}
public ExtCertPathValidatorException(String message, Throwable cause)
{
super(message);
this.cause = cause;
}
public ExtCertPathValidatorException(String msg, Throwable cause,
CertPath certPath, int index)
{
super(msg, cause, certPath, index);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}