DEBSOURCES
Skip Quicknav
sources / ruby-sshkit / 1.21.2-2 / lib / sshkit / exception.rb
12345678910111213
module SSHKit module Runner class ExecuteError < StandardError attr_reader :cause def initialize cause @cause = cause end end end end