Class ColumnAlreadyExistsException

All Implemented Interfaces:
Serializable, TraceableException

@Deprecated public class ColumnAlreadyExistsException extends IgniteException
Deprecated.
No longer used. Use SqlException with ErrorGroups.Sql.STMT_VALIDATION_ERR error code.
This exception is thrown when a column creation has failed because a column with the specified name already existed.
See Also:
  • Constructor Details

    • ColumnAlreadyExistsException

      public ColumnAlreadyExistsException(String name)
      Deprecated.
      Creates a new exception with a given column name.
      Parameters:
      name - Column name.
    • ColumnAlreadyExistsException

      public ColumnAlreadyExistsException(UUID traceId, int code, String message, Throwable cause)
      Deprecated.
      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 be null).