Exception: Net::SSH::ChannelOpenFailed
- Defined in:
- lib/net/ssh/errors.rb
Overview
This is exception is primarily used internally, but if you have a channel open handler (see Net::SSH::Connection::Session#on_open_channel) and you want to fail in such a way that the server knows it failed, you can raise this exception in the handler and Net::SSH will translate that into a “channel open failed” message.
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
-
#reason ⇒ Object
readonly
Returns the value of attribute reason.
Instance Method Summary collapse
-
#initialize(code, reason) ⇒ ChannelOpenFailed
constructor
A new instance of ChannelOpenFailed.
Constructor Details
#initialize(code, reason) ⇒ ChannelOpenFailed
Returns a new instance of ChannelOpenFailed.
37 38 39 40 |
# File 'lib/net/ssh/errors.rb', line 37 def initialize(code, reason) @code, @reason = code, reason super "#{reason} (#{code})" end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
35 36 37 |
# File 'lib/net/ssh/errors.rb', line 35 def code @code end |
#reason ⇒ Object (readonly)
Returns the value of attribute reason.
35 36 37 |
# File 'lib/net/ssh/errors.rb', line 35 def reason @reason end |