| 264 | } |
| 265 | |
| 266 | void IPLProcess::checkPropertyKey(const char *name) |
| 267 | { |
| 268 | if (_properties.find(name) == _properties.end()) |
| 269 | { |
| 270 | std::string error("Invalid property key: "); |
| 271 | error.append(name); |
| 272 | throw std::runtime_error(error.c_str()); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | |
| 277 |