Vitaly Buka | 4615e0d | 2015-10-14 15:35:12 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Weave Authors. All rights reserved. |
Vitaly Buka | ea2f15f | 2015-08-13 15:26:20 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef LIBWEAVE_SRC_JSON_ERROR_CODES_H_ |
| 6 | #define LIBWEAVE_SRC_JSON_ERROR_CODES_H_ |
| 7 | |
| 8 | namespace weave { |
| 9 | |
| 10 | namespace errors { |
| 11 | |
| 12 | namespace json { |
| 13 | extern const char kDomain[]; |
| 14 | |
| 15 | extern const char kParseError[]; |
| 16 | extern const char kObjectExpected[]; |
| 17 | } // namespace json |
| 18 | |
| 19 | } // namespace errors |
| 20 | |
| 21 | } // namespace weave |
| 22 | |
| 23 | #endif // LIBWEAVE_SRC_JSON_ERROR_CODES_H_ |