GM6000 Digital Heater Controller Branch: main
SDX-1330
error_.h
Go to the documentation of this file.
1#ifndef Ajax_Ui_Error_errors_h_
2#define Ajax_Ui_Error_errors_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2023 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15///
16namespace Ajax {
17///
18namespace Ui {
19///
20namespace Error {
21
22
23/// Error Code for Alert
24static constexpr const char* errCode_NOT_PROVISIONED = "Error Code: 01";
25
26/// Error Message for Alert
27static constexpr const char* errMsg_NOT_PROVISIONED = "Manufacture error";
28
29
30/// Error Code for Alert
31static constexpr const char* errCode_POST_FAILURE = "Error Code: 02";
32
33/// Error Message for Alert
34static constexpr const char* errMsg_POST_FAILURE = "Hardware error";
35
36
37/// Error Code for Alert - for all other Alerts (in theory should not happen)
38static constexpr const char* errCode_OTHER_FAILURES = "Error Code: 99";
39
40/// Error Code for Alert - for all other Alerts (in theory should not happen)
41/// Error Message for Alert
42static constexpr const char* errMsg_OTHER_FAILURES = "Software error";
43
44} // end namespaces
45}
46}
47#endif // end header latch
48
The 'Ajax' namespace is the root name space all GM6000 application specific source code.