\brief Creates an error with the provided message.
| 28 | |
| 29 | /// \brief Creates an error with the provided message. |
| 30 | Error(const std::string &s) : ptr(wasmtime_error_new(s.c_str())) {} |
| 31 | |
| 32 | /// \brief Returns the error message associated with this error. |
| 33 | std::string message() const { |
nothing calls this directly
no test coverage detected