Sha256: a9b522b8100e47ad4f59d1c5b8f831fda6c27c2ead1aab5a3f31d2bc4d6cb415
Contents?: true
Size: 1000 Bytes
Versions: 5
Compression:
Stored size: 1000 Bytes
Contents
/* * Copyright 2021-Present Couchbase, Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #pragma once namespace couchbase::core::transactions { enum error_class { FAIL_HARD = 0, FAIL_OTHER, FAIL_TRANSIENT, FAIL_AMBIGUOUS, FAIL_DOC_ALREADY_EXISTS, FAIL_DOC_NOT_FOUND, FAIL_PATH_NOT_FOUND, FAIL_CAS_MISMATCH, FAIL_WRITE_WRITE_CONFLICT, FAIL_ATR_FULL, FAIL_PATH_ALREADY_EXISTS, FAIL_EXPIRY }; } // namespace couchbase::core::transactions
Version data entries
5 entries across 5 versions & 1 rubygems