blob: 5d3f07b627173292b23515d9fe6df432adf102f7 [file] [log] [blame]
Vitaly Buka4615e0d2015-10-14 15:35:12 -07001// Copyright 2015 The Weave Authors. All rights reserved.
Vitaly Bukaea2f15f2015-08-13 15:26:20 -07002// 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
8namespace weave {
9
10namespace errors {
11
12namespace json {
13extern const char kDomain[];
14
15extern const char kParseError[];
16extern const char kObjectExpected[];
17} // namespace json
18
19} // namespace errors
20
21} // namespace weave
22
23#endif // LIBWEAVE_SRC_JSON_ERROR_CODES_H_