# frozen_string_literal: true
moduleAgentDB# Base error class for all AgentDB exceptions.
classError<StandardError;end# Raised when the native library cannot be loaded.
classLibraryNotFoundError<Error;end# Raised when an FFI call returns a NULL pointer or error code.
classFFIError<Error;end# Raised when a database cannot be opened.
classDatabaseError<Error;endend