diff --git a/slither/all_exceptions.py b/slither/all_exceptions.py index 25b82413d..a7db5d1bf 100644 --- a/slither/all_exceptions.py +++ b/slither/all_exceptions.py @@ -2,3 +2,15 @@ This module import all slither exceptions """ # pylint: disable=unused-import +from slither.slithir.exceptions import SlithIRError +from slither.solc_parsing.exceptions import ParsingError, VariableNotFound +from slither.core.exceptions import SlitherCoreError +from slither.exceptions import SlitherException + +__all__ = [ + "SlithIRError", + "ParsingError", + "VariableNotFound", + "SlitherCoreError", + "SlitherException", +]