Commit 49799733 authored by Antoine Millet's avatar Antoine Millet
Browse files

Added the TqlDatabaseError exception

parent a2e4bbf2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -241,6 +241,11 @@ class TqlResponse(object):
# Database:
#

class TqlDatabaseError(Exception):
    """ Exception raised when an error occurs while a tql database operation.
    """


class TqlDatabase(object):

    def __init__(self, default_requestor=None):