org.inxar.hotswap
Class ProxyRuntimeException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.inxar.hotswap.ProxyRuntimeException
All Implemented Interfaces:
Serializable

public class ProxyRuntimeException
extends RuntimeException

Unchecked exception class.

Since:
0.8.6
See Also:
Serialized Form

Field Summary
 Throwable detail
          Nested Exception to hold wrapped component exceptions.
 
Constructor Summary
ProxyRuntimeException()
          Constructs an ProxyRuntimeException with no specified detail message.
ProxyRuntimeException(String s)
          Constructs an ProxyRuntimeException with detail message, s.
ProxyRuntimeException(String s, Throwable ex)
          Constructs an ProxyRuntimeException with detail message, s, and detail exception ex.
ProxyRuntimeException(Throwable ex)
          Constructs an ProxyRuntimeException with detail exception ex.
 
Method Summary
 String getMessage()
          Produces the message, include the message from the nested exception if there is one.
 void printStackTrace()
          Prints the composite message to System.err.
 void printStackTrace(PrintStream ps)
          Prints the composite message and the embedded stack trace to the specified stream ps.
 void printStackTrace(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, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

detail

public Throwable detail
Nested Exception to hold wrapped component exceptions.
Constructor Detail

ProxyRuntimeException

public ProxyRuntimeException()
Constructs an ProxyRuntimeException with no specified detail message.

ProxyRuntimeException

public ProxyRuntimeException(String s)
Constructs an ProxyRuntimeException with detail message, s.
Parameters:
s - the detail message

ProxyRuntimeException

public ProxyRuntimeException(String s,
                             Throwable ex)
Constructs an ProxyRuntimeException with detail message, s, and detail exception ex.
Parameters:
s - detail message
ex - detail exception

ProxyRuntimeException

public ProxyRuntimeException(Throwable ex)
Constructs an ProxyRuntimeException with detail exception ex.
Parameters:
ex - detail exception
Method Detail

getMessage

public String getMessage()
Produces the message, include the message from the nested exception if there is one.
Overrides:
getMessage in class Throwable
Returns:
the message

printStackTrace

public void printStackTrace(PrintStream ps)
Prints the composite message and the embedded stack trace to the specified stream ps.
Overrides:
printStackTrace in class Throwable
Parameters:
ps - the print stream

printStackTrace

public void printStackTrace()
Prints the composite message to System.err.
Overrides:
printStackTrace in class Throwable

printStackTrace

public void printStackTrace(PrintWriter pw)
Prints the composite message and the embedded stack trace to the specified print writer pw.
Overrides:
printStackTrace in class Throwable
Parameters:
pw - the print writer
Since:
1.2