usql updates, lexer changes

This commit is contained in:
2021-09-15 21:22:24 +02:00
parent 7e4a4b5583
commit 1e0506e6cd
21 changed files with 986 additions and 777 deletions

View File

@@ -7,13 +7,8 @@
namespace usql {
class Exception : public std::runtime_error {
private:
std::string cause;
public:
Exception(const std::string &msg);
const char *what() const noexcept;
Exception(const std::string msg);
};
}
} // namespace