Commit dded7963 authored by Paul Dardeau's avatar Paul Dardeau
Browse files

Added BatchCompletedException

parent e7a5d6b0
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -176,6 +176,10 @@ class BatchAbortedException(KineticException):
        super(BatchAbortedException, self).__init__(value)
        self.failed_operation_index = -1

class BatchCompletedException(KineticClientException):
    def __init__(self):
        super(BatchCompletedException, self).__init__('batch completed. no more operations are permitted within this batch.')

class HmacAlgorithms:
    INVALID_HMAC_ALGORITHM = -1 # Must come first, so default is invalid
    HmacSHA1 = 1 # this is the default