Package org.apache.ignite.lang
Class ColumnAlreadyExistsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.lang.IgniteException
org.apache.ignite.lang.ColumnAlreadyExistsException
- All Implemented Interfaces:
Serializable
,TraceableException
This exception is thrown when a column creation has failed because a column with the specified name already existed.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new exception with a given column name.ColumnAlreadyExistsException
(UUID traceId, int code, String message, Throwable cause) Creates a new exception with the given trace ID, error code, detailed message, and cause. -
Method Summary
Methods inherited from class org.apache.ignite.lang.IgniteException
code, codeAsString, errorCode, groupCode, groupName, toString, traceId
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
ColumnAlreadyExistsException
Creates a new exception with a given column name.- Parameters:
name
- Column name.
-
ColumnAlreadyExistsException
Creates a new exception with the given trace ID, error code, detailed message, and cause.- Parameters:
traceId
- Unique identifier of the exception.code
- Full error code.message
- Detailed message.cause
- Optional nested exception (can benull
).
-