blob: 7871fd77f395a0c3e1c0069217927e5997977c19 [file] [log] [blame]
package org.bouncycastle.cert.dane;
/**
* General checked Exception thrown in the DANE package.
*/
public class DANEException
extends Exception
{
private Throwable cause;
public DANEException(String msg, Throwable cause)
{
super(msg);
this.cause = cause;
}
public DANEException(String msg)
{
super(msg);
}
public Throwable getCause()
{
return cause;
}
}