Package org.bouncycastle.jce.exception
Interface ExtException
-
- All Known Implementing Classes:
AnnotatedException,ExtCertPathBuilderException,ExtCertPathValidatorException
public interface ExtExceptionThis 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 theThrowableobject which was thrown and caused the exception. This interface must be implemented by all exceptions to accomplish this additional functionality.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ThrowablegetCause()Returns the cause of the exception.
-
-
-
Method Detail
-
getCause
Throwable getCause()
Returns the cause of the exception.- Returns:
- The cause of the exception.
-
-