errors.py 293 Bytes
Newer Older
Wei Shoulin's avatar
Wei Shoulin committed
1
2
3
4
5
6
7
8

class CSSTGenericException(Exception):
    def __init__(self, *args: object) -> None:
        super(CSSTGenericException, self).__init__(*args)

class CSSTFatalException(Exception):
    def __init__(self, *args: object) -> None:
        super(CSSTFatalException, self).__init__(*args)