blob: 958f2d0c78a26b99153efbbd15a953e1d01d32f5 [file] [log] [blame]
package org.bouncycastle.cert.path;
public class CertPathValidationException
extends Exception
{
private final Exception cause;
public CertPathValidationException(String msg)
{
this(msg, null);
}
public CertPathValidationException(String msg, Exception cause)
{
super(msg);
this.cause = cause;
}
public Throwable getCause()
{
return cause;
}
}