Error Types

Operations can result in various different errors of the types listed below.

exception camlistore.exceptions.ConnectionError[source]

There was some kind of error while establishing an initial connection to a Camlistore server.

exception camlistore.exceptions.HashMismatchError[source]

There was a mismatch between an expected hash value an an actual hash value.

exception camlistore.exceptions.NotCamliServerError[source]

When attempting to connect to a Camlistore server it was determined that the given resource does not implement the Camlistore protocol, and is thus assumed not to be a Camlistore server.

exception camlistore.exceptions.NotFoundError[source]

The requested object was not found on the server.

exception camlistore.exceptions.ServerError[source]

The server returned an unexpected error in response to some operation.

exception camlistore.exceptions.ServerFeatureUnavailableError[source]

The server does not implement the requested feature.

This can occur if e.g. a particular server is running a blob store but is not running an indexer, and a caller tries to use search features.

Previous topic

Accessing the Search Interface

This Page