8 lines
125 B
C++
8 lines
125 B
C++
#include "exception.h"
|
|
|
|
namespace usql {
|
|
|
|
Exception::Exception(std::string msg) : std::runtime_error(msg) {}
|
|
|
|
} // namespace
|