Files
usql/exception.h
2021-11-22 15:05:25 +01:00

14 lines
184 B
C++

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