mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
docs, make ActionNotFound
public API. [ci skip]
This is a follow up to #15058. This exception is regularly raised during development. This means it will enter the user realm. We should provide an API page to show that this exception is public API. /cc @schneems
This commit is contained in:
parent
e927ff3796
commit
65b9abf561
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@ module AbstractController
|
|||
class Error < StandardError #:nodoc:
|
||||
end
|
||||
|
||||
class ActionNotFound < StandardError #:nodoc:
|
||||
# Raised when a non-existing controller action is triggered.
|
||||
class ActionNotFound < StandardError
|
||||
end
|
||||
|
||||
# <tt>AbstractController::Base</tt> is a low-level API. Nobody should be
|
||||
|
|
Loading…
Reference in a new issue