Skip to content

Commit

Permalink
Raise Exception when there is an error in the report setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jorblancoa committed Apr 9, 2024
1 parent 95a8a9f commit 5fdab67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion neurodamus/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def enable_reports(self):
self._report_list.append(report)

if n_errors > 0:
raise ConfigurationError("%d reporting errors detected. Terminating" % (n_errors,))
raise Exception("%d reporting errors detected. Terminating" % (n_errors,))

MPI.check_no_errors()

Expand Down

0 comments on commit 5fdab67

Please sign in to comment.