# File lib/rudy/routines/passthrough.rb, line 32 32: def raise_early_exceptions 33: raise Rudy::Error, "No routine name" unless @name 34: raise NoRoutine, @name unless @routine 35: ##raise MachineGroupNotDefined, current_machine_group unless known_machine_group? 36: # Call raise_early_exceptions for each handler used in the routine 37: @routine.each_pair do |action,definition| 38: raise NoHandler, action unless Rudy::Routines.has_handler?(action) 39: handler = Rudy::Routines.get_handler action 40: handler.raise_early_exceptions(action, definition, @@rset, @@lbox, @argv) 41: end 42: end