| 230 | } |
| 231 | |
| 232 | static void validate_key_name_or_throw (const char* key_name) |
| 233 | { |
| 234 | std::string reason; |
| 235 | if (!validate_key_name(key_name, &reason)) { |
| 236 | throw Error(reason); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | static std::string get_internal_state_path () |
| 241 | { |
no test coverage detected