Class MetadataNotFoundException

All Implemented Interfaces:
Serializable

public class MetadataNotFoundException extends NotFoundException
Exception used to indicate a metadata object is not found.
See Also:
  • Constructor Details

    • MetadataNotFoundException

      public MetadataNotFoundException()
      Constructor.
    • MetadataNotFoundException

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

      public MetadataNotFoundException(String msg, MetadataObjectId objectId)
      Constructor with a detailed message.
      Parameters:
      msg - the associated detailed message.
      objectId - the metadata object ID that could not be found.
    • MetadataNotFoundException

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

      public MetadataNotFoundException(Throwable cause, MetadataObjectId objectId)
      Constructor with the underlying cause.
      Parameters:
      cause - the underlying cause for exception.
      objectId - the metadata object ID that could not be found.
    • MetadataNotFoundException

      public MetadataNotFoundException(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.
    • MetadataNotFoundException

      public MetadataNotFoundException(String msg, Throwable cause, MetadataObjectId objectId)
      Constructor with a detailed message and underlying cause.
      Parameters:
      msg - the detailed message for the exception.
      cause - underlying cause for the exception.
      objectId - the metadata object ID that could not be found.
  • Method Details