slither.solc_parsing.exceptions

1from slither.exceptions import SlitherException
2
3
4class ParsingError(SlitherException):
5    pass
6
7
8class VariableNotFound(SlitherException):
9    pass
class ParsingError(slither.exceptions.SlitherException):
5class ParsingError(SlitherException):
6    pass

Common base class for all non-exit exceptions.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
args
class VariableNotFound(slither.exceptions.SlitherException):
 9class VariableNotFound(SlitherException):
10    pass

Common base class for all non-exit exceptions.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
args