com.drew.lang

Class CompoundException

public class CompoundException extends Exception

Represents a compound exception, as modelled in JDK 1.4, but unavailable in previous versions. This class allows support of these previous JDK versions.
Constructor Summary
CompoundException(String msg)
CompoundException(Throwable exception)
CompoundException(String msg, Throwable innerException)
Method Summary
ThrowablegetInnerException()
voidprintStackTrace(PrintStream s)
voidprintStackTrace(PrintWriter s)
voidprintStackTrace()
StringtoString()

Constructor Detail

CompoundException

public CompoundException(String msg)

CompoundException

public CompoundException(Throwable exception)

CompoundException

public CompoundException(String msg, Throwable innerException)

Method Detail

getInnerException

public Throwable getInnerException()

printStackTrace

public void printStackTrace(PrintStream s)

printStackTrace

public void printStackTrace(PrintWriter s)

printStackTrace

public void printStackTrace()

toString

public String toString()
Copyright © 2006 Drew Noakes. All Rights Reserved.