Exception: ActionController::UrlGenerationError
- Inherits:
-
ActionControllerError
- Object
- StandardError
- ActionControllerError
- ActionController::UrlGenerationError
- Defined in:
- lib/action_controller/metal/exceptions.rb
Overview
:nodoc:
Defined Under Namespace
Classes: Correction
Instance Attribute Summary collapse
-
#method_name ⇒ Object
readonly
Returns the value of attribute method_name.
-
#route_name ⇒ Object
readonly
Returns the value of attribute route_name.
-
#routes ⇒ Object
readonly
Returns the value of attribute routes.
Instance Method Summary collapse
-
#initialize(message, routes = nil, route_name = nil, method_name = nil) ⇒ UrlGenerationError
constructor
A new instance of UrlGenerationError.
Constructor Details
#initialize(message, routes = nil, route_name = nil, method_name = nil) ⇒ UrlGenerationError
Returns a new instance of UrlGenerationError.
28 29 30 31 32 33 34 |
# File 'lib/action_controller/metal/exceptions.rb', line 28 def initialize(, routes = nil, route_name = nil, method_name = nil) @routes = routes @route_name = route_name @method_name = method_name super() end |
Instance Attribute Details
#method_name ⇒ Object (readonly)
Returns the value of attribute method_name.
26 27 28 |
# File 'lib/action_controller/metal/exceptions.rb', line 26 def method_name @method_name end |
#route_name ⇒ Object (readonly)
Returns the value of attribute route_name.
26 27 28 |
# File 'lib/action_controller/metal/exceptions.rb', line 26 def route_name @route_name end |
#routes ⇒ Object (readonly)
Returns the value of attribute routes.
26 27 28 |
# File 'lib/action_controller/metal/exceptions.rb', line 26 def routes @routes end |