From 9ff554fabcb3766c55d873b5e413489f139242ef Mon Sep 17 00:00:00 2001 From: Alexis Date: Wed, 12 Jun 2024 15:33:01 +0200 Subject: [PATCH] Restore missing imports --- slither/all_exceptions.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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", +]