H A D | exceptions.py | 73 def __init__(self, errors, suppressed_count): argument 76 self.errno = errors[0].errno 77 self.errors = errors 78 # this many errors were encountered but not placed on the `errors` list 82 return "%s, %d errors included, %d suppressed" % ( 83 ZFSError.__str__(self), len(self.errors), self.suppressed_count) 86 return "%s(%r, %r, errors=%r, suppressed=%r)" % ( 87 self.__class__.__name__, self.errno, self.message, self.errors, 206 def __init__(self, errors, suppressed_count): argument 207 super(SnapshotFailure, self).__init__(errors, suppressed_count) [all …]
|