Class TaskException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.oddjob.jobs.tasks.TaskException
All Implemented Interfaces:
Serializable

public class TaskException extends Exception
An exception to be used by Tasks.
Author:
Rob Gordon
See Also:
  • Constructor Details

    • TaskException

      public TaskException()
      Constructs a new Exception with no message an no cause.
    • TaskException

      public TaskException(String s, Throwable t)
      Constructs a new Exception with the given message an cause.
      Parameters:
      s - The message.
      t - The cause.
    • TaskException

      public TaskException(Throwable t)
      Constructs a new Exception with the given cause.
      Parameters:
      t - The cause.
    • TaskException

      public TaskException(String s)
      Constructs a new Exception with given message.
      Parameters:
      s - The message.