We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4712d1a commit e1e4eb1Copy full SHA for e1e4eb1
pybecker/becker_helper.py
@@ -46,14 +46,5 @@ def finalize_code(code):
46
return b"".join([STX, code.encode(), ETX])
47
48
49
-class BeckerConnectionError(Error):
50
- """Exception raised in case of connection error (serial error).
51
-
52
- Attributes:
53
- expression -- input expression in which the error occurred
54
- message -- explanation of the error
55
- """
56
57
- def __init__(self, expression, message):
58
- self.expression = expression
59
- self.message = message
+class BeckerConnectionError(Exception):
+ pass
0 commit comments