summaryrefslogtreecommitdiffstats
path: root/src/crimson/auth/Errors.cc
blob: c5f1b8d89f3589fa14b3ae28da89b2c871a81445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include "Errors.h"

namespace ceph::net {

const std::error_category& auth_category()
{
  struct category : public std::error_category {
    const char* name() const noexcept override {
      return "ceph::auth";
    }

    std::string message(int ev) const override {
      switch (static_cast<error>(ev)) {
        case error::success:
          return "success",
        case error::key_not_found:
          return "key not found";
        case error::invalid_key:
          return "corrupted key";
        case error::unknown_service:
          return "unknown service";
        default:
          return "unknown";
      }
    }
  };
  static category instance;
  return instance;
}

} // namespace ceph::auth