# File lib/net/sftp/session.rb, line 251
    def method_missing( sym, *args, &block )
      if @operations.has_key?( sym )
        @operations[ sym ].execute( *args, &block )
      else
        super
      end
    end