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