Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

org.apache.commons.lang.exception: Javadoc index of package org.apache.commons.lang.exception.


Package Samples:

org.apache.commons.lang.exception: Provides highly reusable static utility methods, chiefly concerned with adding value to java.lang and other standard core classes.  

Classes:

NestableException: The base class of all exceptions which can contain other exceptions. It is intended to ease the debugging by carrying on the information about the exception which was caught and provoked throwing the current exception. Catching and rethrowing may occur multiple times, and provided that all exceptions except the first one are descendants of NestedException , when the exception is finally printed out using any of the printStackTrace() methods, the stack trace will contain the information about all exceptions thrown and caught on the way. Running the following program 1 import org.apache.commons.lang.exception.NestableException; ...
NestableDelegate: A shared implementation of the nestable exception functionality. The code is shared between NestableError , NestableException and NestableRuntimeException .
ThrowableNestable: Used to test that the constructor passes when passed a throwable cause And, the NestableDelegate.getMessage() returns the message from underlying nestable (which also has to be a Throwable).
Nestable: An interface to be implemented by java.lang.Throwable extensions which would like to be able to nest root exceptions inside themselves.
ThrowableNestedNestable: Nestable and Throwable class which takes in a 'cause' object. Returns a message wrapping the 'cause' message Prints a fixed stack trace and partial stack trace.
NestableDelegateTester1: Nestable and Throwable class which can be passed to the NestableDelegate constructor. Used for testing various methods which iterate through the nested causes.
NestableDelegateTester2: Nestable and Throwable class which can be passed to the NestableDelegate constructor. Used for testing various methods which iterate through the nested causes.
ExceptionUtilsTestCase: Tests ExceptionUtils .
ExceptionUtils: Provides utilities for manipulating and examining Throwable objects.
AbstractNestableTestCase: Tests implementations of the org.apache.commons.lang.exception.Nestable interface.
NestableRuntimeException: The base class of all runtime exceptions which can contain other exceptions.
NestableRuntimeExceptionTestCase: Tests the org.apache.commons.lang.exception.NestableRuntimeException class.
NonThrowableNestable: Used to test that the constructor fails when passed a non-throwable cause
NestableExceptionTestCase: Tests the org.apache.commons.lang.exception.NestableException class.
NestableDelegateTestCase: Tests the org.apache.commons.lang.exception.NestableDelegate class.
NestableError: The base class of all errors which can contain other exceptions.
NestableErrorTestCase: Tests the org.apache.commons.lang.exception.NestableError class.
ExceptionTestSuite: Test manager for the org.apache.commons.lang.exception classes.
NestableErrorTester2: Second nestable tester implementation for use in test cases.
NestableExceptionTester2: Second nestable tester implementation for use in test cases.
NestableErrorTester1: First nestable tester implementation for use in test cases.
NestableExceptionTester1: First nestable tester implementation for use in test cases.
NestableRuntimeExceptionTester1: First nestable tester implementation for use in test cases.

Home | Contact Us | Privacy Policy | Terms of Service