blob: 11f5bf586e0723c01d1ec1e339025611f9954999 [file] [log] [blame]
/*
*
* Copyright (c) 2018 Nest Labs, Inc.
* All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef WEAVE_DEVICE_ERROR_H
#define WEAVE_DEVICE_ERROR_H
#define WEAVE_DEVICE_ERROR_MIN 11000000
#define WEAVE_DEVICE_ERROR_MAX 11000999
#define _WEAVE_DEVICE_ERROR(e) (WEAVE_DEVICE_ERROR_MIN + (e))
/**
* @def WEAVE_DEVICE_ERROR_CONFIG_VALUE_NOT_FOUND
*
* @brief
* The requested configuration value was not found.
*
*/
#define WEAVE_DEVICE_ERROR_CONFIG_NOT_FOUND _WEAVE_DEVICE_ERROR(1)
#endif // WEAVE_DEVICE_ERROR_H