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:
Yves Senn 2014-05-11 14:53:50 +02:00
parent e927ff3796
commit 65b9abf561

@ -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