Class TableNotFoundException

All Implemented Interfaces:
Serializable, TraceableException

public class TableNotFoundException extends IgniteException
Exception is thrown when a specified table cannot be found.
See Also:
  • Constructor Details

    • TableNotFoundException

      public TableNotFoundException(QualifiedName tableName)
      Creates an exception with the given table name.
      Parameters:
      tableName - Table name.
    • TableNotFoundException

      public TableNotFoundException(QualifiedName tableName, @Nullable @Nullable Throwable cause)
      Creates an exception with the given table name.
      Parameters:
      tableName - Table name.
      cause - Optional nested exception (can be null).
    • TableNotFoundException

      public TableNotFoundException(UUID traceId, int code, String message, @Nullable @Nullable 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).