Exception: Xcode::Shell::ExecutionError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/xcode/shell/command.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, output = nil) ⇒ ExecutionError

Returns a new instance of ExecutionError.



11
12
13
14
# File 'lib/xcode/shell/command.rb', line 11

def initialize(message, output=nil)
  super message
  @output = output
end

Instance Attribute Details

#outputObject

Returns the value of attribute output.



10
11
12
# File 'lib/xcode/shell/command.rb', line 10

def output
  @output
end