Files
mlisp/usql/exception.h
2021-12-19 13:33:47 +01:00

12 lines
164 B
C++

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