usql/exception.h

12 lines
164 B
C++

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