Return a Message representation or raise a KeyError.
(self, key)
| 77 | return self._factory(file) |
| 78 | |
| 79 | def get_message(self, key): |
| 80 | """Return a Message representation or raise a KeyError.""" |
| 81 | raise NotImplementedError('Method must be implemented by subclass') |
| 82 | |
| 83 | def get_string(self, key): |
| 84 | """Return a string representation or raise a KeyError. |
no outgoing calls