summaryrefslogtreecommitdiff
path: root/redfish-core/src/error_messages.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'redfish-core/src/error_messages.cpp')
-rw-r--r--redfish-core/src/error_messages.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/redfish-core/src/error_messages.cpp b/redfish-core/src/error_messages.cpp
index cdaced6246..654353d783 100644
--- a/redfish-core/src/error_messages.cpp
+++ b/redfish-core/src/error_messages.cpp
@@ -1673,6 +1673,24 @@ void invalidUpload(crow::Response& res, std::string_view arg1,
/**
* @internal
+ * @brief Formats InsufficientStorage message into JSON
+ *
+ * See header file for more information
+ * @endinternal
+ */
+nlohmann::json insufficientStorage()
+{
+ return getLog(redfish::registries::base::Index::insufficientStorage, {});
+}
+
+void insufficientStorage(crow::Response& res)
+{
+ res.result(boost::beast::http::status::insufficient_storage);
+ addMessageToErrorJson(res.jsonValue, insufficientStorage());
+}
+
+/**
+ * @internal
* @brief Formats Invalid File message into JSON
*
* See header file for more information
@@ -1693,6 +1711,7 @@ nlohmann::json invalidUpload(std::string_view arg1, std::string_view arg2)
{"MessageSeverity", "Warning"},
{"Resolution", "None."}};
}
+
} // namespace messages
} // namespace redfish