Package org.apache.gravitino.exceptions
Class IllegalJobTemplateOperationException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
java.lang.IllegalArgumentException
org.apache.gravitino.exceptions.IllegalJobTemplateOperationException
- All Implemented Interfaces:
Serializable
Exception thrown when an illegal operation is attempted on a job template, such as trying to
modify or delete a built-in job template, or creating a user template with a reserved name.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionIllegalJobTemplateOperationException(String message, Object... args) Constructs a new IllegalJobTemplateOperationException with the specified detail message.IllegalJobTemplateOperationException(Throwable cause, String message, Object... args) Constructs a new IllegalJobTemplateOperationException 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
-
IllegalJobTemplateOperationException
@FormatMethod public IllegalJobTemplateOperationException(@FormatString String message, Object... args) Constructs a new IllegalJobTemplateOperationException with the specified detail message.- Parameters:
message- the detail messageargs- the arguments to the message
-
IllegalJobTemplateOperationException
@FormatMethod public IllegalJobTemplateOperationException(Throwable cause, @FormatString String message, Object... args) Constructs a new IllegalJobTemplateOperationException with the specified detail message and cause.- Parameters:
cause- the causemessage- the detail messageargs- the arguments to the message
-