lib: strictly type function return status enumerations
[babeltrace.git] / src / bindings / python / bt2 / bt2 / __init__.py.in
index fe987a3dc9e58afe10e9281ea7ee38a5dd80a664..0faede10cc664ed514f54099296e08d081e1b55c 100644 (file)
@@ -74,11 +74,19 @@ class CreationError(Error):
     '''Raised when object creation fails due to memory issues.'''
 
 
-class InvalidQueryObject(Error):
+class InvalidObject(Error):
     pass
 
 
-class InvalidQueryParams(Error):
+class InvalidParams(Error):
+    pass
+
+
+class OverflowError(OverflowError):
+    pass
+
+
+class Unsupported(Exception):
     pass
 
 
@@ -94,15 +102,15 @@ class IncompleteUserClass(Error):
     pass
 
 
-class GraphCanceled(Exception):
+class Canceled(Exception):
     pass
 
 
-class QueryExecutorCanceled(Exception):
+class NonexistentClockSnapshot(Error):
     pass
 
 
-class NonexistentClockSnapshot(Error):
+class LoadingError(Error):
     pass
 
 
@@ -116,10 +124,10 @@ def _init_and_register_exit():
     import bt2.native_bt as _native_bt
     import atexit
 
-    atexit.register(_native_bt.py3_cc_exit_handler)
+    atexit.register(_native_bt.bt2_cc_exit_handler)
     version = (_native_bt.version_get_major(), _native_bt.version_get_minor(),
                _native_bt.version_get_patch(), _native_bt.version_get_extra())
-    _native_bt.py3_cc_init_from_bt2()
+    _native_bt.bt2_cc_init_from_bt2()
 
 
 _init_and_register_exit()
This page took 0.036433 seconds and 4 git commands to generate.