blob: 3faea7e3506796fa7434b9c9a86dca692282dd4a [file] [log] [blame]
Alex Vakulenko07216fe2014-09-19 15:31:09 -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/states/error_codes.h"
6
7namespace buffet {
8namespace errors {
9namespace state {
10
11const char kDomain[] = "buffet_state";
12
13const char kPackageNameMissing[] = "package_name_missing";
14const char kPropertyNameMissing[] = "property_name_missing";
15const char kPropertyNotDefined[] = "property_not_defined";
16const char kPropertyRedefinition[] = "property_redefinition";
17
18} // namespace state
19} // namespace errors
20} // namespace buffet