Implemented a basic test of the float reader and encoder. See note in code comment.
[~jspiros/python-ebml.git] / ebml / exceptions.py
1 class EBMLException(Exception):
2         pass
3
4 class ParseError(EBMLException):
5         pass
6
7 class ReservedElementIDError(EBMLException):
8         pass