| 77 | }; |
| 78 | |
| 79 | class SerializationException : public std::runtime_error |
| 80 | { |
| 81 | public: |
| 82 | SerializationException(const UString &description, SerializationNode *node) |
| 83 | : std::runtime_error(UString(description + " " + node->getFullPath()).c_str()) |
| 84 | { |
| 85 | } |
| 86 | }; |
| 87 | |
| 88 | } // namespace OpenApoc |
no outgoing calls
no test coverage detected