org.bouncycastle.pkix.jcajce.AnnotatedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polaris-all Show documentation
Show all versions of polaris-all Show documentation
All in one project for polaris-java
package org.bouncycastle.pkix.jcajce;
class AnnotatedException
extends Exception
{
private Throwable _underlyingException;
public AnnotatedException(String string, Throwable e)
{
super(string);
_underlyingException = e;
}
public AnnotatedException(String string)
{
this(string, null);
}
public Throwable getCause()
{
return _underlyingException;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy