| 26 | } |
| 27 | |
| 28 | SerializationNode *SerializationNode::getSectionReq(const char *name) |
| 29 | { |
| 30 | auto node = this->getSectionOpt(name); |
| 31 | if (!node) |
| 32 | { |
| 33 | throw SerializationException(format("Missing section \"%s\"", name), this); |
| 34 | } |
| 35 | return node; |
| 36 | } |
| 37 | |
| 38 | SerializationNode *SerializationNode::getNextSiblingReq(const char *name) |
| 39 | { |
nothing calls this directly
no test coverage detected