Class SchedulerConflictException

All Implemented Interfaces:
Serializable, ErrorCodeException

public class SchedulerConflictException extends SchedulerException implements ErrorCodeException
Thrown when a scheduled event can not be added or updated because of a conflict.
See Also:
  • Field Details

  • Constructor Details

    • SchedulerConflictException

      public SchedulerConflictException(String message, Throwable cause)
      Build a new scheduler conflict exception with a message and an original cause.
      Parameters:
      message - the error message
      cause - the original exception causing this scheduler conflict exception to be thrown
    • SchedulerConflictException

      public SchedulerConflictException(Throwable cause)
      Build a new scheduler conflict exception from the original cause.
      Parameters:
      cause - the original exception causing this scheduler conflict exception to be thrown
    • SchedulerConflictException

      public SchedulerConflictException(String message)
      Build a new scheduler conflict exception with a message
      Parameters:
      message - the error message
  • Method Details