internal CouchbaseLiteException(C4ErrorCode errCode, string message, Exception innerException) : base(new C4Error(errCode), message)
 {
 }
Example #2
0
 public C4Error(C4ErrorCode code) : this(C4ErrorDomain.LiteCoreDomain, (int)code)
 {
 }
 internal CouchbaseLiteException(C4ErrorCode errCode) : base(new C4Error(errCode))
 {
 }