Files
usql/exception.h
VaclavT 6d4fe43a3b fixes and improvements
exceptions related code needs work
2021-07-26 17:50:16 +02:00

19 lines
242 B
C++

#pragma once
#include "lexer.h"
#include <string>
namespace usql {
class Exception : public std::runtime_error {
private:
std::string cause;
public:
Exception(const std::string &msg);
const char *what() const noexcept;
};
}