very basic version of usql

This commit is contained in:
2021-07-14 12:01:44 +02:00
parent f594437b61
commit 577370caef
21 changed files with 3189 additions and 1072 deletions

19
usql/exception.h Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include "lexer.h"
#include <string>
namespace usql {
class Exception : public std::exception {
private:
std::string cause;
public:
Exception(const std::string &msg);
const char *what() const noexcept;
};
}