This commit is contained in:
2021-09-02 21:36:26 +02:00
parent a1b3b0140f
commit 427a3a9f04
7 changed files with 12 additions and 25 deletions

View File

@@ -7,13 +7,8 @@
namespace usql {
class Exception : public std::runtime_error {
private:
std::string cause;
public:
Exception(const std::string &msg);
const char *what() const noexcept;
Exception(const std::string msg);
};
}
} // namespace