SunnySrivastava1984 | b59fd09 | 2020-02-03 09:58:56 -0600 | [diff] [blame] | 1 | #include <com/ibm/VPD/error.hpp> |
| 2 | |
| 3 | namespace sdbusplus |
| 4 | { |
| 5 | namespace com |
| 6 | { |
| 7 | namespace ibm |
| 8 | { |
| 9 | namespace VPD |
| 10 | { |
| 11 | namespace Error |
| 12 | { |
| 13 | const char* LocationNotFound::name() const noexcept |
| 14 | { |
| 15 | return errName; |
| 16 | } |
| 17 | const char* LocationNotFound::description() const noexcept |
| 18 | { |
| 19 | return errDesc; |
| 20 | } |
| 21 | const char* LocationNotFound::what() const noexcept |
| 22 | { |
| 23 | return errWhat; |
| 24 | } |
| 25 | const char* NodeNotFound::name() const noexcept |
| 26 | { |
| 27 | return errName; |
| 28 | } |
| 29 | const char* NodeNotFound::description() const noexcept |
| 30 | { |
| 31 | return errDesc; |
| 32 | } |
| 33 | const char* NodeNotFound::what() const noexcept |
| 34 | { |
| 35 | return errWhat; |
| 36 | } |
| 37 | const char* PathNotFound::name() const noexcept |
| 38 | { |
| 39 | return errName; |
| 40 | } |
| 41 | const char* PathNotFound::description() const noexcept |
| 42 | { |
| 43 | return errDesc; |
| 44 | } |
| 45 | const char* PathNotFound::what() const noexcept |
| 46 | { |
| 47 | return errWhat; |
| 48 | } |
| 49 | const char* RecordNotFound::name() const noexcept |
| 50 | { |
| 51 | return errName; |
| 52 | } |
| 53 | const char* RecordNotFound::description() const noexcept |
| 54 | { |
| 55 | return errDesc; |
| 56 | } |
| 57 | const char* RecordNotFound::what() const noexcept |
| 58 | { |
| 59 | return errWhat; |
| 60 | } |
| 61 | const char* KeywordNotFound::name() const noexcept |
| 62 | { |
| 63 | return errName; |
| 64 | } |
| 65 | const char* KeywordNotFound::description() const noexcept |
| 66 | { |
| 67 | return errDesc; |
| 68 | } |
| 69 | const char* KeywordNotFound::what() const noexcept |
| 70 | { |
| 71 | return errWhat; |
| 72 | } |
| 73 | |
| 74 | } // namespace Error |
| 75 | } // namespace VPD |
| 76 | } // namespace ibm |
| 77 | } // namespace com |
| 78 | } // namespace sdbusplus |