module GoNative::DSL::ErrorCatchable

Public Instance Methods

call(...) click to toggle source
Calls superclass method
# File lib/gonative/dsl/error_catchable.rb, line 7
def call(...)
  super(...)
rescue Error => e
  warn e.message
end