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