Files
usql/exception.h
2021-12-13 22:08:27 +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