Initial commit. Implemented reading of variable size integers, element sizes, and...
[~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