org.ceryle.xml
Class DocumentException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.ceryle.util.ProcessException
              extended by org.ceryle.xml.DocumentException
All Implemented Interfaces:
Serializable

public class DocumentException
extends ProcessException

A class that extends ProcessException for errors that occur during XML document processing, not the parsing of XML syntax.

Since:
JDK1.3
Version:
$Id: DocumentException.java,v 3.4 2007-06-15 12:10:28 altheim Exp $
Author:
Murray Altheim
See Also:
ProcessException, Serialized Form

Field Summary
 
Fields inherited from class org.ceryle.util.ProcessException
exception, isMessageId, line, messageId, param1, param2, param3
 
Constructor Summary
DocumentException(Exception exception)
          Constructor for DocumentException tunnelling the original Exception.
DocumentException(String messageId)
          Constructor for DocumentException.
DocumentException(String messageId, Exception exception)
          Constructor for DocumentException provided a message identifier, tunnelling the original Exception.
DocumentException(String messageId, String param1)
          Constructor for DocumentException with a message ID and one parameter.
DocumentException(String messageId, String param1, String param2)
          Constructor for DocumentException with a message ID and two parameters.
DocumentException(String messageId, String param1, String param2, String param3)
          Constructor for DocumentException with a message ID and three parameters.
 
Method Summary
 
Methods inherited from class org.ceryle.util.ProcessException
getException, getLine, getMessage, getMessageId
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

DocumentException

public DocumentException(String messageId)
Constructor for DocumentException.

Parameters:
messageId - The unique message identifier.

DocumentException

public DocumentException(Exception exception)
Constructor for DocumentException tunnelling the original Exception.

Parameters:
exception - The original Exception.

DocumentException

public DocumentException(String messageId,
                         Exception exception)
Constructor for DocumentException provided a message identifier, tunnelling the original Exception.

Parameters:
messageId - The unique message identifier.
exception - The original Exception.

DocumentException

public DocumentException(String messageId,
                         String param1)
Constructor for DocumentException with a message ID and one parameter.

Parameters:
messageId - The unique message identifier.
param1 - A parameter string to be inserted at %1.
See Also:
MsgId

DocumentException

public DocumentException(String messageId,
                         String param1,
                         String param2)
Constructor for DocumentException with a message ID and two parameters.

Parameters:
messageId - The unique message identifier.
param1 - A parameter string to be inserted at %1.
param2 - A parameter string to be inserted at %2.
See Also:
MsgId

DocumentException

public DocumentException(String messageId,
                         String param1,
                         String param2,
                         String param3)
Constructor for DocumentException with a message ID and three parameters.

Parameters:
messageId - The unique message identifier.
param1 - A parameter string to be inserted at %1.
param2 - A parameter string to be inserted at %2.
param3 - A parameter string to be inserted at %3.
See Also:
MsgId


The Ceryle Project. Copyright ©2001-2007 Murray Altheim, All Rights Reserved. See LICENSE included with distribution.