blob: 7b613df24ca0e8929870d929dad7519ef4a7c967 [file] [log] [blame]
#include <cstdint>
#include <stdexcept>
namespace phosphor
{
namespace dump
{
namespace host
{
void requestOffload(uint32_t)
{
throw std::runtime_error("Hostdump offload method not specified");
}
void requestDelete(uint32_t, uint32_t)
{
throw std::runtime_error("Hostdump delete method not specified");
}
} // namespace host
} // namespace dump
} // namespace phosphor