Class MetadataServiceException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
MetadataIllegalOperationException, MetadataServiceAccessControlException

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

    • MetadataServiceException

      public MetadataServiceException()
      Default constructor.
    • MetadataServiceException

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

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

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