Skip to content

Commit 20f4a1d

Browse files
Add missing InternalException
1 parent ba63157 commit 20f4a1d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

pyslicer/exceptions.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ def __str__(self):
1616
self.code, self.message, self.more_info)
1717

1818

19+
class InternalException(SlicingDiceException):
20+
def __init__(self, *args, **kwargs):
21+
super(SlicingDiceHTTPError, self).__init__(self, *args, **kwargs)
22+
23+
1924
# Specific SlicingDice Exceptions
2025

2126
class SlicingDiceHTTPError(SlicingDiceException):

0 commit comments

Comments
 (0)