class Calabash::Cucumber::LaunchError

Raised when calabash cannot launch the app.

Attributes

error[RW]

Public Class Methods

new(err) click to toggle source
# File lib/calabash-cucumber/launcher.rb, line 8
def initialize(err)
  self.error= err
end

Public Instance Methods

to_s() click to toggle source

@!visibility private

# File lib/calabash-cucumber/launcher.rb, line 13
def to_s
  "#{super.to_s}: #{error}"
end