Enum CouchbaseLiteErrorType
These are the domains into which a CouchbaseException can fall. Each domain has one or more corresponding exception subclasses. You can trap a CouchbaseException and check its Domain to see which kind of subclass you should cast to, if desirable. Subclasses have a fixed domain.
Namespace: Couchbase.Lite
Assembly: Couchbase.Lite.dll
Syntax
public enum CouchbaseLiteErrorType
  Fields
| Name | Description | 
|---|---|
| CouchbaseLite | This error was generated by LiteCore and involves data verification, disk and network I/O, and HTTP / WebSocket statuses  | 
      
| Fleece | An error occurred during serialization or deserialization of data  | 
      
| POSIX | A POSIX error code was received during operation. For Windows this is best effort as Win32 API does not set POSIX error codes.  | 
      
| SQLite | An error occurred during a SQLite operation and is being bubbled up  |