This is thrown by any javascript functions that need to report an error
| 37 | { |
| 38 | /// This is thrown by any javascript functions that need to report an error |
| 39 | struct Error : public std::runtime_error |
| 40 | { |
| 41 | Error (const std::string& error) : std::runtime_error (error) {} |
| 42 | }; |
| 43 | |
| 44 | //============================================================================== |
| 45 | /// Helper class to hold and provide access to the arguments in a javascript |
no outgoing calls
no test coverage detected