# File lib/RMagick.rb, line 1701
    def method_missing(methID, *args, &block)
        begin
            if @scene
                @images[@scene].send(methID, *args, &block)
            else
                super
            end
        rescue NoMethodError
          Kernel.raise NoMethodError, "undefined method `#{methID.id2name}' for #{self.class}"
        rescue Exception
            $@.delete_if { |s| /:in `send'$/.match(s) || /:in `method_missing'$/.match(s) }
            Kernel.raise
        end
    end