Package org.apache.gravitino.exceptions
Class NoSuchViewException
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.NoSuchViewException
- All Implemented Interfaces:
Serializable
Exception thrown when a view with specified name does not exist.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNoSuchViewException(String message, Object... args) Constructs a NoSuchViewException.NoSuchViewException(Throwable cause, String message, Object... args) Constructs a NoSuchViewException with a 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
-
NoSuchViewException
Constructs a NoSuchViewException.- Parameters:
message- The error message.args- Additional arguments for formatting the error message.
-
NoSuchViewException
Constructs a NoSuchViewException with a cause.- Parameters:
cause- The cause of the exception.message- The error message.args- Additional arguments for formatting the error message.
-