Files
usql/exception.h
2022-01-05 13:01:26 +01:00

14 lines
186 B
C++

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