14 lines
186 B
C++
14 lines
186 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <stdexcept>
|
|
|
|
|
|
namespace usql {
|
|
|
|
class Exception : public std::runtime_error {
|
|
public:
|
|
explicit Exception(std::string msg);
|
|
};
|
|
|
|
} // namespace
|