psemek/libs/util/source/not_implemented.cpp

13 lines
172 B
C++

#include <psemek/util/not_implemented.hpp>
#include <stdexcept>
namespace psemek::util
{
void not_implemented()
{
throw std::runtime_error("Not implemented");
}
}