Class JobSchedulerException

All Implemented Interfaces:
Serializable

public class JobSchedulerException extends IOException
Class JobSchedulerException is thrown to indicate that a job frontend process was unable to contact the Job Scheduler Daemon.
Version:
24-Oct-2006
Author:
Alan Kaminsky
See Also:
  • Constructor Details

    • JobSchedulerException

      public JobSchedulerException()
      Create a new Job Scheduler exception with no detail message and no cause.
    • JobSchedulerException

      public JobSchedulerException(String msg)
      Create a new Job Scheduler exception with the given detail message and no cause.
      Parameters:
      msg - Detail message.
    • JobSchedulerException

      public JobSchedulerException(Throwable cause)
      Create a new Job Scheduler exception with no detail message and the given cause.
      Parameters:
      cause - Cause.
    • JobSchedulerException

      public JobSchedulerException(String msg, Throwable cause)
      Create a new Job Scheduler exception with the given detail message and the given cause.
      Parameters:
      msg - Detail message.
      cause - Cause.