blob: bf51efcdaa9aa5b2a5ddc99d34c685e6d568d0a9 [file] [log] [blame]
Alex Vakulenkoc30f8212014-07-22 07:27:22 -07001// Copyright 2014 The Chromium OS 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 "buffet/error_codes.h"
6
7namespace buffet {
8namespace errors {
9
10namespace json {
11const char kDomain[] = "json_parser";
12const char kParseError[] = "json_parse_error";
13const char kObjectExpected[] = "json_object_expected";
14} // namespace json
15
16namespace file_system {
17const char kDomain[] = "file_system";
18const char kFileReadError[] = "file_read_error";
19} // namespace file_system
20
21} // namespace errors
22} // namespace buffet