1 // SPDX-License-Identifier: Apache-2.0 2 3 #include <stdint.h> 4 5 #include <stdexcept> 6 7 namespace phosphor 8 { 9 namespace dump 10 { 11 namespace host 12 { 13 /** 14 * @brief Initiate offload of the dump with provided dump source ID 15 * 16 * @param[in] id - The Dump Source ID. 17 * 18 */ 19 void requestOffload(uint32_t) 20 { 21 throw std::runtime_error("PLDM: Hostdump offload method not specified"); 22 } 23 24 void requestDelete(uint32_t) 25 { 26 throw std::runtime_error("PLDM: Hostdump delete method not specified"); 27 } 28 } // namespace host 29 } // namespace dump 30 } // namespace phosphor 31