Class Net::SSH::ChannelOpenFailed

  1. lib/net/ssh/errors.rb

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.

Methods

public class

  1. new

Attributes

code [R]
reason [R]

Public class methods

new (code, reason)
[show source]
    # File lib/net/ssh/errors.rb, line 29
29:     def initialize(code, reason)
30:       @code, @reason = code, reason
31:       super "#{reason} (#{code})"
32:     end