org.ceryle.graph
Class GraphException

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

public class GraphException
extends ProcessException

An general class for exceptions thrown during graph processing.

Since:
JDK1.3
Version:
$Id: GraphException.java,v 3.3 2007-06-15 12:09:23 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
GraphException(Exception exception)
          Constructor for GraphException tunnelling the original Exception.
GraphException(String messageId)
          Constructor for GraphException.
GraphException(String messageId, Exception exception)
          Constructor for GraphException provided a message identifier, tunnelling the original Exception.
GraphException(String messageId, String param1)
          Constructor for GraphException with a MessageId and one parameter.
GraphException(String messageId, String param1, String param2)
          Constructor for GraphException with a MessageId and two parameters.
GraphException(String messageId, String param1, String param2, String param3)
          Constructor for GraphException with a MessageId 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

GraphException

public GraphException(String messageId)
Constructor for GraphException.

Parameters:
messageId - the unique message identifier.

GraphException

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

Parameters:
exception - the original Exception.

GraphException

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

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

GraphException

public GraphException(String messageId,
                      String param1)
Constructor for GraphException with a MessageId and one parameter.

Parameters:
messageId - the unique message identifier.
param1 - a parameter string to be inserted at %1.

GraphException

public GraphException(String messageId,
                      String param1,
                      String param2)
Constructor for GraphException with a MessageId 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.

GraphException

public GraphException(String messageId,
                      String param1,
                      String param2,
                      String param3)
Constructor for GraphException with a MessageId 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.


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