Class: Protocol::HTTP::Executor::ClosedError
- Inherits:
-
RemoteError
- Object
- RemoteError
- RemoteError
- Protocol::HTTP::Executor::ClosedError
- Defined in:
- lib/protocol/http/executor/error.rb
Overview
Raised when an execution transport closes unexpectedly.
Instance Attribute Summary
Attributes inherited from RemoteError
Instance Method Summary collapse
-
#initialize(message = "The execution transport closed unexpectedly.") ⇒ ClosedError
constructor
Initialize an unexpected transport closure.
Methods inherited from RemoteError
#The remote error description.=, dump
Constructor Details
#initialize(message = "The execution transport closed unexpectedly.") ⇒ ClosedError
Initialize an unexpected transport closure.
42 43 44 |
# File 'lib/protocol/http/executor/error.rb', line 42 def initialize( = "The execution transport closed unexpectedly.") super(class: self.class.name, message: , backtrace: nil) end |