![JAR search and dependency download from the Maven repository](/logo.png)
nl.open.jwtdependency.org.bouncycastle.jce.exception.ExtException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-jwt-nodependencies Show documentation
Show all versions of java-jwt-nodependencies Show documentation
This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).
The newest version!
package org.bouncycastle.jce.exception;
/**
*
* This is an extended exception. Java before version 1.4 did not offer the
* possibility the attach a cause to an exception. The cause of an exception is
* the Throwable
object which was thrown and caused the
* exception. This interface must be implemented by all exceptions to accomplish
* this additional functionality.
*
*/
public interface ExtException
{
/**
* Returns the cause of the exception.
*
* @return The cause of the exception.
*/
Throwable getCause();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy