org.spongycastle.jce.exception.ExtException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prov Show documentation
Show all versions of prov Show documentation
Spongy Castle is a package-rename (org.bouncycastle.* to org.spongycastle.*) of Bouncy Castle
intended for the Android platform. Android unfortunately ships with a stripped-down version of
Bouncy Castle, which prevents easy upgrades - Spongy Castle overcomes this and provides a full,
up-to-date version of the Bouncy Castle cryptographic libs.
The newest version!
package org.spongycastle.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();
}