I have a Rails 3.2 application that uses Apartment, which is used as a middleware. Apartment throws an Apartment::SchemaNotFound
exception and there is no way to rescue it with rescue_from
from the ApplicationController
. I thought I'd use config.exceptions_app
as described in point #3 in this blog post, but I can't set the router as the exception app, I assume I have to create my own.
So the question is: How do I proceed?