Commit 82146f00 by rfkelly0

added OperationTimeoutError

parent 890e25f3
...@@ -89,6 +89,10 @@ class FSClosedError(OperationFailedError): ...@@ -89,6 +89,10 @@ class FSClosedError(OperationFailedError):
default_message = "Unable to %(opname)s: the FS has been closed" default_message = "Unable to %(opname)s: the FS has been closed"
class OperationTimeoutError(OperationFailedError):
default_message = "Unable to %(opname)s: operation timed out"
class ResourceError(FSError): class ResourceError(FSError):
"""Base exception class for error associated with a specific resource.""" """Base exception class for error associated with a specific resource."""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment