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 #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 kParseError[];
14 extern const char kObjectExpected[];
15 }  // namespace json
16 
17 }  // namespace errors
18 
19 }  // namespace weave
20 
21 #endif  // LIBWEAVE_SRC_JSON_ERROR_CODES_H_
22