Return a Message representation or raise a KeyError.
(self, key)
| 84 | return self._factory(file) |
| 85 | |
| 86 | def get_message(self, key): |
| 87 | """Return a Message representation or raise a KeyError.""" |
| 88 | raise NotImplementedError('Method must be implemented by subclass') |
| 89 | |
| 90 | def get_string(self, key): |
| 91 | """Return a string representation or raise a KeyError. |
no outgoing calls