# File lib/apipie/method_description.rb, line 103
    def see_url
      if @see
        method_description = Apipie[@see]
        if method_description.nil?
          raise ArgumentError.new("Method #{@see} referenced in 'see' does not exist.")
        end
        method_description.doc_url
      end
    end