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 | |
Stefan Sauer | 2d16dfa | 2015-09-25 17:08:35 +0200 | [diff] [blame] | 5 | #include "src/json_error_codes.h" |
Vitaly Buka | ea2f15f | 2015-08-13 15:26:20 -0700 | [diff] [blame] | 6 | |
| 7 | namespace weave { |
| 8 | namespace errors { |
| 9 | |
| 10 | namespace json { |
| 11 | const char kDomain[] = "json_parser"; |
| 12 | const char kParseError[] = "json_parse_error"; |
| 13 | const char kObjectExpected[] = "json_object_expected"; |
| 14 | } // namespace json |
| 15 | |
| 16 | } // namespace errors |
| 17 | } // namespace weave |