Class IndexNotFoundException

All Implemented Interfaces:
Serializable, TraceableException

public class IndexNotFoundException extends IgniteException
Exception is thrown when the specified index is not found.
See Also:
  • Constructor Details

    • IndexNotFoundException

      public IndexNotFoundException(QualifiedName indexName)
      Creates an exception with the given index name.
      Parameters:
      indexName - Index name.
    • IndexNotFoundException

      public IndexNotFoundException(UUID traceId, String message, Throwable cause)
      Creates an exception with the given trace ID, error code, detailed message, and cause.
      Parameters:
      traceId - Unique identifier of this exception.
      message - Detail message.
      cause - Optional nested exception (can be null).
    • IndexNotFoundException

      public IndexNotFoundException(UUID traceId, int code, String message, Throwable cause)
      Creates a new exception with the given trace ID, error code, detailed message, and cause.
      Parameters:
      traceId - Unique identifier of this exception.
      code - Full error code.
      message - Detail message.
      cause - Optional nested exception (can be null).