Class RuntimeServiceException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
JobCancelledException, RollbackException, RuntimeIllegalOperationException, RuntimeServiceAccessControlException, RuntimeStoreAccessException

public class RuntimeServiceException extends SchedulerException
Exception used by RuntimeService to indicate system errors. This also serves as the base class for various other Exception classes used by the Enterprise Scheduler runtime service subsystem.
See Also:
  • Constructor Details

    • RuntimeServiceException

      public RuntimeServiceException()
      Constructor
    • RuntimeServiceException

      public RuntimeServiceException(String msg)
      Constructor with a detailed message.
      Parameters:
      msg - the associated detailed message
    • RuntimeServiceException

      public RuntimeServiceException(Throwable cause)
      Constructor with the underlying cause.
      Parameters:
      cause - the underlying cause for exception.
    • RuntimeServiceException

      public RuntimeServiceException(String msg, Throwable cause)
      Constructor with a detailed message and underlying cause.
      Parameters:
      msg - the detailed message for the exception.
      cause - underlying cause for the exception.