Package org.apache.gravitino.exceptions
Class NotFoundException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.gravitino.exceptions.GravitinoRuntimeException
org.apache.gravitino.exceptions.NotFoundException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NoSuchCatalogException,NoSuchColumnException,NoSuchCredentialException,NoSuchFilesetException,NoSuchGroupException,NoSuchJobException,NoSuchJobTemplateException,NoSuchLocationNameException,NoSuchMetadataObjectException,NoSuchMetalakeException,NoSuchModelException,NoSuchModelVersionException,NoSuchModelVersionURINameException,NoSuchPartitionException,NoSuchPolicyException,NoSuchRoleException,NoSuchSchemaException,NoSuchTableException,NoSuchTagException,NoSuchTopicException,NoSuchUserException
Base class for all exceptions thrown when a resource is not found.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNotFoundException(String message, Object... args) Constructs a new NotFoundException.NotFoundException(Throwable cause, String message, Object... args) Constructs a new NotFoundException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NotFoundException
Constructs a new NotFoundException.- Parameters:
message- The detail message.args- The arguments to the message.
-
NotFoundException
Constructs a new NotFoundException.- Parameters:
cause- The cause of the exception.message- The detail message.args- The arguments to the message.
-