Class: Protocol::HTTP::Executor::ClosedError

Inherits:
RemoteError
  • Object
show all
Defined in:
lib/protocol/http/executor/error.rb

Overview

Raised when an execution transport closes unexpectedly.

Instance Attribute Summary

Attributes inherited from RemoteError

#description

Instance Method Summary collapse

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(message = "The execution transport closed unexpectedly.")
	super(class: self.class.name, message: message, backtrace: nil)
end