class Net::SSH::ChannelOpenFailed
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.
Attributes
code[R]
reason[R]
Public Class Methods
new(code, reason)
click to toggle source
Calls superclass method
# File lib/net/ssh/errors.rb, line 37 def initialize(code, reason) @code, @reason = code, reason super "#{reason} (#{code})" end