blob: 52c60ded7ae4dd8d01ab586a5a6b0e855548fd24 [file] [log] [blame]
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 <code>Throwable</code> 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();
}