# File lib/needle/interceptor-chain.rb, line 53
      def process_next( context )
        if @next_obj.nil?
          raise Bug,
            "[BUG] interceptor chain should always terminate with proxy"
        end
        @interceptor.process( @next_obj, context )
      end