mirror of
https://github.com/ceph/ceph
synced 2025-01-25 04:24:24 +00:00
17 lines
298 B
Python
17 lines
298 B
Python
|
"""
|
||
|
Thrasher base class
|
||
|
"""
|
||
|
class Thrasher(object):
|
||
|
|
||
|
def __init__(self):
|
||
|
super(Thrasher, self).__init__()
|
||
|
self.exception = None
|
||
|
|
||
|
@property
|
||
|
def exception(self):
|
||
|
return self._exception
|
||
|
|
||
|
@exception.setter
|
||
|
def exception(self, e):
|
||
|
self._exception = e
|