com.elharo.xml.xinclude
Class MissingHrefException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.elharo.xml.xinclude.XIncludeException
                    |
                    +--com.elharo.xml.xinclude.MissingHrefException
All Implemented Interfaces:
java.io.Serializable

public class MissingHrefException
extends XIncludeException

A MissingHrefException is thrown when an xinclude:include element is missing its required href attribute.

See Also:
Serialized Form

Constructor Summary
MissingHrefException()
          Constructs a MissingHrefException with null as its error detail message.
MissingHrefException(java.lang.String message)
          Constructs a MissingHrefException with the specified detail message.
 
Methods inherited from class com.elharo.xml.xinclude.XIncludeException
getRootCause, setRootCause
 
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

MissingHrefException

public MissingHrefException()
Constructs a MissingHrefException with null as its error detail message.


MissingHrefException

public MissingHrefException(java.lang.String message)
Constructs a MissingHrefException with the specified detail message. The error message string message can later be retrieved by the Throwable.getMessage() method of class java.lang.Throwable.

Parameters:
message - the detail message.