jpl.eda.archive.server
Class TaskException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjpl.eda.archive.server.TaskException
All Implemented Interfaces:
java.io.Serializable

public class TaskException
extends java.lang.Exception

This class is intended to be thrown as an exception in the Task class.

Version:
$Revision: 1.3 $
Author:
S. Hardman
See Also:
Task, Serialized Form

Constructor Summary
TaskException()
          Constructor given no arguments.
TaskException(java.lang.String message)
          Constructor given a message string.
TaskException(java.lang.String message, java.lang.Throwable cause)
          Constructor given a message and a cause.
TaskException(java.lang.Throwable cause)
          Constructor given a 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

TaskException

public TaskException()
Constructor given no arguments. This constructor calls the Exception constructor with the same signature.


TaskException

public TaskException(java.lang.String message)
Constructor given a message string. This constructor calls the Exception constructor with the same signature.

Parameters:
message - The message associated with the exception.

TaskException

public TaskException(java.lang.Throwable cause)
Constructor given a cause. This constructor calls the Exception constructor with the same signature.

Parameters:
cause - The exception that caused this exception.

TaskException

public TaskException(java.lang.String message,
                     java.lang.Throwable cause)
Constructor given a message and a cause. This constructor calls the Exception constructor with the same signature.

Parameters:
message - The message associated with the exception.
cause - The exception that caused this exception.


Copyright © 1999-2005 NASA Jet Propulsion Laboratory, California Institute of Technology. All Rights Reserved.