| 3945 | |
| 3946 | public: |
| 3947 | error(const std::string& str) : error(detail::direct_error, "lua: error: " + str) { |
| 3948 | } |
| 3949 | error(std::string&& str) : error(detail::direct_error, "lua: error: " + std::move(str)) { |
| 3950 | } |
| 3951 | error(detail::direct_error_tag, const std::string& str) : std::runtime_error(""), what_reason(str) { |