Implemented encode_element_size and write_element_size, and added tests. This should...
[~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