|
[Deprecated API] | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | CURRENT API | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.interface21.core.NestedCheckedException
Handy class for wrapping runtime Exceptions with a root cause. This time-honoured technique is no longer necessary in Java 1.4, which provides built-in support for exception nesting. Thus exceptions in applications written to use Java 1.4 need not extend this class.
Abstract to force the programmer to extend the class. printStackTrace() etc. are forwarded to the wrapped Exception. The present assumption is that all application-specific exceptions that could be displayed to humans (users, administrators etc.) will implement the ErrorCoded interface.
The similarity between this class and the NestedCheckedException class is unavoidable, as Java forces these two classes to have different superclasses (ah, the inflexibility of concrete inheritance!).
As discussed in Expert One-On-One J2EE Design and Development, runtime exceptions are often a better alternative to checked exceptions. However, all exceptions should preserve their stack trace, if caused by a lower-level exception.
| Constructor Summary | |
NestedCheckedException(java.lang.String msg)
Constructs a ExceptionWrapperException with the specified
detail message. |
|
NestedCheckedException(java.lang.String msg,
java.lang.Throwable ex)
Constructs a RemoteException with the specified
detail message and nested exception. |
|
| Method Summary | |
java.lang.String |
getMessage()
Returns the detail message, including the message from the nested exception if there is one. |
java.lang.Throwable |
getRootCause()
Returns the nested cause, or null if none. |
void |
printStackTrace(java.io.PrintStream ps)
Prints the composite message and the embedded stack trace to the specified stream ps. |
void |
printStackTrace(java.io.PrintWriter pw)
Prints the composite message and the embedded stack trace to the specified print writer pw |
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, printStackTrace, toString |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
public NestedCheckedException(java.lang.String msg)
ExceptionWrapperException with the specified
detail message.msg - the detail message
public NestedCheckedException(java.lang.String msg,
java.lang.Throwable ex)
RemoteException with the specified
detail message and nested exception.msg - the detail messageex - the nested exception| Method Detail |
public java.lang.Throwable getRootCause()
getRootCause in interface HasRootCausecom.interface21.core.HasRootCausepublic java.lang.String getMessage()
getMessage in class java.lang.Throwablepublic void printStackTrace(java.io.PrintStream ps)
ps.printStackTrace in class java.lang.Throwableps - the print streampublic void printStackTrace(java.io.PrintWriter pw)
pwprintStackTrace in class java.lang.Throwablepw - the print writer
|
[Deprecated API] | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | CURRENT API | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||