#pragma once
#include "lexer.h"
#include <string>
namespace usql {
class Exception : public std::runtime_error {
public:
Exception(const std::string msg);
};
} // namespace