YugabyteDB (2.13.0.0-b42, bfc6a6643e7399ac8a0e81d06a3ee6d6571b33ab)

Coverage Report

Created: 2022-03-09 17:30

/Users/deen/code/yugabyte-db/src/yb/consensus/consensus_error.h
Line
Count
Source
1
//
2
// Copyright (c) YugaByte, Inc.
3
//
4
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5
// in compliance with the License.  You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software distributed under the License
10
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11
// or implied.  See the License for the specific language governing permissions and limitations
12
// under the License.
13
//
14
//
15
16
#ifndef YB_CONSENSUS_CONSENSUS_ERROR_H
17
#define YB_CONSENSUS_CONSENSUS_ERROR_H
18
19
#include "yb/consensus/consensus_types.pb.h"
20
#include "yb/util/status_ec.h"
21
22
namespace yb {
23
namespace consensus {
24
25
struct ConsensusErrorTag : IntegralErrorTag<ConsensusErrorPB::Code> {
26
  // This category id is part of the wire protocol and should not be changed once released.
27
  static constexpr uint8_t kCategory = 11;
28
29
12
  static const std::string& ToMessage(Value code) {
30
12
    return ConsensusErrorPB::Code_Name(code);
31
12
  }
32
};
33
34
typedef StatusErrorCodeImpl<ConsensusErrorTag> ConsensusError;
35
36
} // namespace consensus
37
} // namespace yb
38
39
#endif // YB_CONSENSUS_CONSENSUS_ERROR_H