1 #include <cstdint> 2 #include <stdexcept> 3 4 namespace phosphor 5 { 6 namespace dump 7 { 8 namespace host 9 { 10 void requestOffload(uint32_t) 11 { 12 throw std::runtime_error("Hostdump offload method not specified"); 13 } 14 15 void requestDelete(uint32_t, uint32_t) 16 { 17 throw std::runtime_error("Hostdump delete method not specified"); 18 } 19 } // namespace host 20 } // namespace dump 21 } // namespace phosphor 22