7 lines
135 B
Python
7 lines
135 B
Python
__all__ = ["ElementException", "TreeException"]
|
|
|
|
class ElementException(Exception):
|
|
pass
|
|
|
|
class TreeException(Exception):
|
|
pass
|