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