class AnnotateRoutes::ControllerNotFound

Attributes

file[R]

Public Class Methods

new(file) click to toggle source
# File lib/annotate_routes/exceptions.rb, line 5
def initialize(file)
  @file = file
end

Public Instance Methods

message() click to toggle source
# File lib/annotate_routes/exceptions.rb, line 9
def message
  "No such controller - #{file}"
end