Sha256: ef871977238c04395e038566c25af68767c2cf70575b97ebe290a5b9d32bd471
Contents?: true
Size: 300 Bytes
Versions: 107
Compression:
Stored size: 300 Bytes
Contents
module AppMap # Raised when a system / shell command fails. class CommandError < StandardError attr_reader :command, :msg def initialize(command, msg = nil) super [ "Command failed: #{command}", msg ].compact.join('; ') @command = command @msg = msg end end end
Version data entries
107 entries across 107 versions & 1 rubygems