Package com.sleepycat.util
Interface ExceptionWrapper
- All Known Implementing Classes:
IOExceptionWrapper,RuntimeExceptionWrapper
public interface ExceptionWrapper
Interface implemented by exceptions that can contain nested exceptions.
-
Method Summary
-
Method Details
-
getDetail
Throwable getDetail()Deprecated.replaced bygetCause().Returns the nested exception or null if none is present.- Returns:
- the nested exception or null if none is present.
-
getCause
Throwable getCause()Returns the nested exception or null if none is present.This method is intentionally defined to be the same signature as the
java.lang.Throwable.getCausemethod in Java 1.4 and greater. By defining this method to return a nested exception, the Java 1.4 runtime will print the nested stack trace.- Returns:
- the nested exception or null if none is present.
-
getCause().