We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 256d341 commit 70098c9Copy full SHA for 70098c9
gitdb/exc.py
@@ -5,6 +5,17 @@
5
"""Module with common exceptions"""
6
from gitdb.util import to_hex_sha
7
8
+__all__ = [
9
+ 'AmbiguousObjectName',
10
+ 'BadName',
11
+ 'BadObject',
12
+ 'BadObjectType',
13
+ 'InvalidDBRoot',
14
+ 'ODBError',
15
+ 'ParseError',
16
+ 'UnsupportedOperation',
17
+ 'to_hex_sha',
18
+]
19
20
class ODBError(Exception):
21
"""All errors thrown by the object database"""
0 commit comments