Enhydra 5.1 API

org.enhydra.xml.xmlc.reloading
Class XMLCReloadingException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--org.enhydra.error.ChainedRuntimeException
                          |
                          +--org.enhydra.xml.xmlc.XMLCRuntimeException
                                |
                                +--org.enhydra.xml.xmlc.reloading.XMLCReloadingException
All Implemented Interfaces:
ChainedThrowable, java.io.Serializable

public class XMLCReloadingException
extends XMLCRuntimeException

Runtime exception associated with reloading.

See Also:
Serialized Form

Constructor Summary
XMLCReloadingException(java.lang.String msg)
          Construct an exception without a specified cause.
XMLCReloadingException(java.lang.String msg, java.lang.Throwable cause)
          Construct an exception with an associated causing exception.
XMLCReloadingException(java.lang.Throwable cause)
          Construct an exception from a causing exception.
 
Method Summary
 java.lang.String getErrorOutput()
          Get the error output or null if it was not set.
 void setErrorOutput(java.lang.String out)
          Set the error output.
 
Methods inherited from class org.enhydra.error.ChainedRuntimeException
getCause, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getStackTrace, initCause, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

XMLCReloadingException

public XMLCReloadingException(java.lang.String msg)
Construct an exception without a specified cause.

Parameters:
msg - The message associated with the exception.

XMLCReloadingException

public XMLCReloadingException(java.lang.String msg,
                              java.lang.Throwable cause)
Construct an exception with an associated causing exception.

Parameters:
msg - The message associated with the exception.
cause - The exception or exception that cause this exception.

XMLCReloadingException

public XMLCReloadingException(java.lang.Throwable cause)
Construct an exception from a causing exception.

Parameters:
cause - The exception or exception that cause this exception. The message will be take be this object's messasge.
Method Detail

setErrorOutput

public void setErrorOutput(java.lang.String out)
Set the error output.


getErrorOutput

public java.lang.String getErrorOutput()
Get the error output or null if it was not set.


Enhydra 5.1 API