From 7ffd0bf2ade7d74f55d5cf32d635e5b4e5c48bc1 Mon Sep 17 00:00:00 2001 From: stephb9959 Date: Fri, 6 May 2022 23:11:46 -0700 Subject: [PATCH] Updating to new error framework. --- src/framework/ow_constants.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/framework/ow_constants.h b/src/framework/ow_constants.h index 468926a..a5a31e8 100644 --- a/src/framework/ow_constants.h +++ b/src/framework/ow_constants.h @@ -136,6 +136,11 @@ namespace OpenWifi::RESTAPI::Errors { static const struct msg SMSMissingPhoneNumber{1094,"Missing phone number"}; static const struct msg SMSTryLater{1095,"SMS could not be sent. Verify the number or try again later."}; static const struct msg SMSMissingChallenge{1096,"Missing 'challengeCode'"}; + static const struct msg MustHaveConfigElement{1097,"Must have 'configuration' element."}; + + static const struct msg ModelIDListCannotBeEmpty{1098,"Model ID list cannot be empty."}; + static const struct msg DefConfigNameExists{1099,"Configuration name already exists."}; + }