aboutsummaryrefslogtreecommitdiff
path: root/src/ee/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ee/__init__.py')
-rw-r--r--src/ee/__init__.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ee/__init__.py b/src/ee/__init__.py
index ea887b1..bbb9281 100644
--- a/src/ee/__init__.py
+++ b/src/ee/__init__.py
@@ -8,6 +8,7 @@ from ee.formatting import eng_str
__all__ = [
"EeException",
+ "StopToolException",
"EeVal",
"EeValType",
"resistance_type",
@@ -21,6 +22,10 @@ class EeException(Exception):
pass
+class StopToolException(EeException):
+ pass
+
+
class EeValType(object):
def __init__(self, symbol, alternate_symbols):
self.symbol = symbol