Package org.apache.gravitino.exceptions
Class IllegalNamespaceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.gravitino.exceptions.IllegalNamespaceException
- All Implemented Interfaces:
Serializable
An exception thrown when a namespace is invalid.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a new exception with the specified detail message and cause.IllegalNamespaceException
(String message, Object... args) Constructs a new exception with the specified detail message.Constructs a new exception with the specified cause.IllegalNamespaceException
(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
-
IllegalNamespaceException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.args
- the arguments to the message.
-
IllegalNamespaceException
@FormatMethod public IllegalNamespaceException(Throwable cause, @FormatString String message, Object... args) 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.
-
IllegalNamespaceException
Constructs a new exception with the specified cause.- Parameters:
cause
- the cause.
-
IllegalNamespaceException
public IllegalNamespaceException()Constructs a new exception with the specified detail message and cause.
-