class Apipie::NoDocumentedMethod

Public Class Methods

new(controller_name, method_name) click to toggle source
# File lib/apipie/errors.rb, line 77
def initialize(controller_name, method_name)
  @method_name = method_name
  @controller_name = controller_name
end

Public Instance Methods

to_s() click to toggle source
# File lib/apipie/errors.rb, line 82
def to_s
  "There is no documented method #{@controller_name}##{@method_name}"
end