| 83 | |
| 84 | public: |
| 85 | error(const std::string& str) : error(detail::direct_error, "lua: error: " + str) { |
| 86 | } |
| 87 | error(std::string&& str) : error(detail::direct_error, "lua: error: " + std::move(str)) { |
| 88 | } |
| 89 | error(detail::direct_error_tag, const std::string& str) : std::runtime_error(str) { |
nothing calls this directly
no outgoing calls
no test coverage detected