xref: /openbmc/phosphor-debug-collector/host-transport-extensions/default/default.cpp (revision 3af5c32bc26f108501ae3353f9470f122a687b7c)
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 } // namespace host
16 } // namespace dump
17 } // namespace phosphor
18