Class NotAllowedException

All Implemented Interfaces:
Serializable

public class NotAllowedException extends SchedulerException
Exception used to indicate that a specific operation is not allowed for the given set of arguments.
See Also:
  • Constructor Details

    • NotAllowedException

      public NotAllowedException()
      Constructor
    • NotAllowedException

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

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

      public NotAllowedException(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.