KoogVectorStoreException

class KoogVectorStoreException(operation: String, message: String? = null, cause: Throwable? = null) : Exception(source)

Exception thrown when a Koog vector-store operation fails.

Wraps backend provider errors and filter-expression parsing failures with operation context so that callers receive a consistent, Koog-specific exception type instead of raw backend exceptions.

Parameters

operation

a short label describing the failed operation (e.g. "add", "search", "delete")

message

human-readable description of the failure

cause

the original exception, if any

Constructors

Link copied to clipboard
constructor(operation: String, message: String? = null, cause: Throwable? = null)

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?