blob: 4b12a45c148c6eb58128efe98dcaa1570f052693 [file] [log] [blame]
Vitaly Buka4615e0d2015-10-14 15:35:12 -07001// Copyright 2015 The Weave Authors. All rights reserved.
Alex Vakulenko07216fe2014-09-19 15:31:09 -07002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Stefan Sauer2d16dfa2015-09-25 17:08:35 +02005#include "src/states/error_codes.h"
Alex Vakulenko07216fe2014-09-19 15:31:09 -07006
Vitaly Bukab6f015a2015-07-09 14:59:23 -07007namespace weave {
Alex Vakulenko07216fe2014-09-19 15:31:09 -07008namespace 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
Vitaly Bukab6f015a2015-07-09 14:59:23 -070020} // namespace weave