changes here and there

This commit is contained in:
2021-07-12 18:45:51 +02:00
parent 5e69ce1047
commit 5e4480c767
18 changed files with 1692 additions and 1309 deletions

View File

@@ -4,12 +4,16 @@
#include <string>
class Exception : public std::exception {
private:
std::string cause;
namespace usql {
public:
class Exception : public std::exception {
private:
std::string cause;
public:
Exception(const std::string &msg);
const char* what() const noexcept;
};
const char *what() const noexcept;
};
}