Module: GoNative::DSL::ErrorCatchable

Defined in:
lib/gonative/dsl/error_catchable.rb

Instance Method Summary collapse

Instance Method Details

#callObject



6
7
8
9
10
11
# File 'lib/gonative/dsl/error_catchable.rb', line 6

def call(...)
  super(...)
rescue Error => e
  Utils::UI.error e.message
  exit 1
end