Sha256: 649e3bef518a800a09b3c90717e68c2154e0c5662831145d24b578029fdaff4b
Contents?: true
Size: 250 Bytes
Versions: 6
Compression:
Stored size: 250 Bytes
Contents
module AwesomeSpawn class CommandResultError < StandardError # @return [CommandResult] The command that caused the error attr_reader :result def initialize(message, result) super(message) @result = result end end end
Version data entries
6 entries across 6 versions & 1 rubygems