1 // Copyright 2015 The Weave Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "src/json_error_codes.h"
6 
7 namespace weave {
8 namespace errors {
9 
10 namespace json {
11 const char kParseError[] = "json_parse_error";
12 const char kObjectExpected[] = "json_object_expected";
13 }  // namespace json
14 
15 }  // namespace errors
16 }  // namespace weave
17