[edit] avoid catching unspecified Exceptions

specific Exception catchment is better than general; additionally errors are raised for better debugging control
This commit is contained in:
2016-03-23 11:56:25 +01:00
parent 31d56cb287
commit 722e21f582
2 changed files with 7 additions and 1 deletions

View File

@@ -20,3 +20,6 @@ class DatastructureError(Exception):
class OverwriteError(IOError):
pass
class ParameterError(Exception):
pass