Class ValidationException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
FrequencyValidationException

public class ValidationException extends SchedulerException
Exception used to indicate a failed validation.

This may be used to indicate failures in metadata object validations before persisting into the metadata repository. It may also be used for failed validations during runtime service or metadata service operations.

See Also:
  • Constructor Details

    • ValidationException

      public ValidationException()
      Default constructor
    • ValidationException

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

      public ValidationException(String msg, boolean isRefIntegrityViolation)
      Constructor with a detailed message.
      Parameters:
      msg - the detailed message associated with this exception
      isRefIntegrityViolation - true if this exception is related to violation of refrential integrity of database.
    • ValidationException

      public ValidationException(Throwable cause)
      Constructor that creates the instance based on a cause.
      Parameters:
      cause - the underlying cause for exception
    • ValidationException

      public ValidationException(String msg, Throwable cause)
      Constructor to create the instance with an message and cause.
      Parameters:
      msg - the detailed message to be associated with the exception
      cause - the underlying cause
  • Method Details

    • isRefIntegrityException

      public boolean isRefIntegrityException()
      Indicates if this exception is related to violation of referential integrity.
      Returns:
      true if it is related to referential integrity, or false if otherwise