Package org.apache.gravitino.exceptions
Class NoSuchTableException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.gravitino.exceptions.GravitinoRuntimeException
org.apache.gravitino.exceptions.NotFoundException
org.apache.gravitino.exceptions.NoSuchTableException
- All Implemented Interfaces:
Serializable
Exception thrown when a table with specified name is not existed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNoSuchTableException
(String message, Object... args) Constructs a new exception with the specified detail message.NoSuchTableException
(Throwable cause, String message, Object... args) Constructs a new exception with the specified detail message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
NoSuchTableException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.args
- the arguments to the message.
-
NoSuchTableException
Constructs a new exception with the specified detail message and cause.- Parameters:
cause
- the cause.message
- the detail message.args
- the arguments to the message.
-