Commit 257d5bf4 authored by Paul Dardeau's avatar Paul Dardeau
Browse files

Added value to BatchAbortedException constructor.

parent 342e524c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -172,7 +172,8 @@ class ClusterVersionFailureException(KineticMessageException):
        self.cluster_version = cluster_version

class BatchAbortedException(KineticException):
    def __init__(self):
    def __init__(self, value):
        super(BatchAbortedException, self).__init__(value)
        self.failed_operation_index = -1

class HmacAlgorithms: