Class ColumnNotFoundException

All Implemented Interfaces:
Serializable, TraceableException

public class ColumnNotFoundException extends IgniteException
Exception is thrown when the indicated column is not found.
See Also:
  • Constructor Details

    • ColumnNotFoundException

      public ColumnNotFoundException(String columnName)
      Creates an exception with a given column name.
      Parameters:
      columnName - Column name.
    • ColumnNotFoundException

      public ColumnNotFoundException(QualifiedName tableName, String columnName)
      Creates an exception with a given column name.
      Parameters:
      tableName - Table name.
      columnName - Column name.
    • ColumnNotFoundException

      public ColumnNotFoundException(UUID traceId, int code, String message, Throwable cause)
      Creates an 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).