Ho il seguente codice:rescue_from :: :: AbstractController ActionNotFound non funziona
unless Rails.application.config.consider_all_requests_local
rescue_from Exception, with: :render_exception
rescue_from ActiveRecord::RecordNotFound, with: :render_exception
rescue_from ActionController::UnknownController, with: :render_exception
rescue_from ::AbstractController::ActionNotFound, with: :render_exception
rescue_from ActiveRecord::ActiveRecordError, with: :render_exception
rescue_from NoMethodError, with: :render_exception
end
Lavorano tutti impeccabile, tranne :: :: AbstractController ActionNotFound
Ho anche provato
AbstractController::ActionNotFound
ActionController::UnknownAction
errore:
AbstractController::ActionNotFound (The action 'show' could not be found for ProductsController):