#include "exception.h" namespace usql { Exception::Exception(std::string msg) : std::runtime_error(msg) {} } // namespace