ix.util.xml
Class XMLException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by ix.util.xml.XMLException
All Implemented Interfaces:
java.io.Serializable

public class XMLException
extends java.lang.RuntimeException

Thrown to indicate a problem converting to or from XML.

See Also:
Serialized Form

Constructor Summary
XMLException(java.lang.String message)
          Constructs an exception contaning the specified message.
XMLException(java.lang.String message, java.lang.Throwable reason)
          Constructs an exception with a message containing the specified message followed by " because " followed by a description of the reason exception.
XMLException(java.lang.Throwable reason)
          Constructs an exception with a description of the reason as its message.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

XMLException

public XMLException(java.lang.String message)
Constructs an exception contaning the specified message.


XMLException

public XMLException(java.lang.Throwable reason)
Constructs an exception with a description of the reason as its message.

See Also:
Debug.describeException(Throwable)

XMLException

public XMLException(java.lang.String message,
                    java.lang.Throwable reason)
Constructs an exception with a message containing the specified message followed by " because " followed by a description of the reason exception.

See Also:
Debug.describeException(Throwable)