Package edu.rit.pj.cluster
Class JobSchedulerException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
edu.rit.pj.cluster.JobSchedulerException
- All Implemented Interfaces:
Serializable
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 Summary
ConstructorDescriptionCreate a new Job Scheduler exception with no detail message and no cause.Create a new Job Scheduler exception with the given detail message and no cause.JobSchedulerException
(String msg, Throwable cause) Create a new Job Scheduler exception with the given detail message and the given cause.JobSchedulerException
(Throwable cause) Create a new Job Scheduler exception with no detail message and the given cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
JobSchedulerException
public JobSchedulerException()Create a new Job Scheduler exception with no detail message and no cause. -
JobSchedulerException
Create a new Job Scheduler exception with the given detail message and no cause.- Parameters:
msg
- Detail message.
-
JobSchedulerException
Create a new Job Scheduler exception with no detail message and the given cause.- Parameters:
cause
- Cause.
-
JobSchedulerException
Create a new Job Scheduler exception with the given detail message and the given cause.- Parameters:
msg
- Detail message.cause
- Cause.
-