Browse Source

Changed datahandler exceptions from functions to classes

Roland Haroutiounian 7 years ago
parent
commit
b6093866cd
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lodel/leapi/datahandlers/exceptions.py

+ 2
- 2
lodel/leapi/datahandlers/exceptions.py View File

@@ -1,6 +1,6 @@
1
-def LodelDataHandlerException(Exception):
1
+class LodelDataHandlerException(Exception):
2 2
     pass
3 3
 
4 4
 
5
-def LodelDataHandlerConsistencyException(LodelDataHandlerException):
5
+class LodelDataHandlerConsistencyException(LodelDataHandlerException):
6 6
     pass

Loading…
Cancel
Save