Skip to content

Commit 324c66a

Browse files
feature/hgi-8863: raise exception when failures occur instead of silently killing process
1 parent c946d0f commit 324c66a

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

tap_quickbooks/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -325,12 +325,6 @@ def main_impl():
325325
def main():
326326
try:
327327
main_impl()
328-
except TapQuickbooksQuotaExceededException as e:
329-
LOGGER.critical(e)
330-
sys.exit(2)
331-
except TapQuickbooksException as e:
332-
LOGGER.critical(e)
333-
sys.exit(1)
334328
except Exception as e:
335329
LOGGER.critical(e)
336330
raise e

0 commit comments

Comments
 (0)