| 9 | |
| 10 | struct Error { |
| 11 | static void operation(string_t& input, int32_t& result) { |
| 12 | result = 0; |
| 13 | throw RuntimeException(input.getAsString()); |
| 14 | } |
| 15 | }; |
| 16 | |
| 17 | function_set ErrorFunction::getFunctionSet() { |
nothing calls this directly
no test coverage detected