Package org.apache.gravitino.exceptions
Class UnmodifiableStatisticException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.UnsupportedOperationException
org.apache.gravitino.exceptions.UnmodifiableStatisticException
- All Implemented Interfaces:
Serializable
An exception thrown when users modify an unmodifiable statistic
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUnmodifiableStatisticException
(String message, Object... args) Constructs a new exception with the specified detail message.UnmodifiableStatisticException
(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
-
UnmodifiableStatisticException
Constructs a new exception with the specified detail message.- Parameters:
message
- the detail message.args
- the arguments to the message.
-
UnmodifiableStatisticException
@FormatMethod public UnmodifiableStatisticException(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.
-