xref: /openbmc/phosphor-debug-collector/host-transport-extensions/default/default.cpp (revision 4c63ce5e2e507a0642e25d3e769ee8cb8638fbfe)
1131994beSRamesh Iyyar #include <cstdint>
2131994beSRamesh Iyyar #include <stdexcept>
3131994beSRamesh Iyyar 
4131994beSRamesh Iyyar namespace phosphor
5131994beSRamesh Iyyar {
6131994beSRamesh Iyyar namespace dump
7131994beSRamesh Iyyar {
8131994beSRamesh Iyyar namespace host
9131994beSRamesh Iyyar {
requestOffload(uint32_t)10131994beSRamesh Iyyar void requestOffload(uint32_t)
11131994beSRamesh Iyyar {
12131994beSRamesh Iyyar     throw std::runtime_error("Hostdump offload method not specified");
13131994beSRamesh Iyyar }
14131994beSRamesh Iyyar 
requestDelete(uint32_t,uint32_t)15*4c63ce5eSDhruvaraj Subhashchandran void requestDelete(uint32_t, uint32_t)
162279386bSRamesh Iyyar {
172279386bSRamesh Iyyar     throw std::runtime_error("Hostdump delete method not specified");
182279386bSRamesh Iyyar }
19131994beSRamesh Iyyar } // namespace host
20131994beSRamesh Iyyar } // namespace dump
21131994beSRamesh Iyyar } // namespace phosphor
22