de.fu_berlin.ties
Class ProcessingException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byde.fu_berlin.ties.ProcessingException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
ParsingException

public class ProcessingException
extends Exception

Exception thrown when an error occurs during processing.

Version:
$Revision: 1.1 $, $Date: 2004/02/02 18:35:57 $, $Author: siefkes $
Author:
Christian Siefkes
See Also:
Serialized Form

Constructor Summary
ProcessingException(String message)
          Constructs a new exception with the specified detail message.
ProcessingException(String message, Throwable cause)
          Constructs a new exception with the specified detail message and cause.
ProcessingException(Throwable cause)
          Constructs a new exception with the specified cause.
 
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

ProcessingException

public ProcessingException(String message)
Constructs a new exception with the specified detail message.

Parameters:
message - the detail message

ProcessingException

public ProcessingException(Throwable cause)
Constructs a new exception with the specified cause. The detail message is set to (cause==null ? null : cause.toString()) (which typically contains the class and detail message of cause). This constructor is useful for exceptions that are little more than wrappers for other throwables.

Parameters:
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)

ProcessingException

public ProcessingException(String message,
                           Throwable cause)
Constructs a new exception with the specified detail message and cause. Note that the detail message associated with cause is not automatically incorporated in this exception's detail message.

Parameters:
message - the detail message
cause - the cause (which is saved for later retrieval by the Throwable.getCause() method)


Copyright © 2003-2004 Christian Siefkes. All Rights Reserved.