ruby-on-rails – Rails:将Mongoid和BSON异常重新加到我自己的异常中

我有自己的异常处理程序:

module Frog
  module Errors
    class NotFound < FrogError
      attr_accessor :exception

      def initialize (exception)
        self.exception = exception
      end

      def as_json
        {
          :error => {
            :message => "Object not found"
          }
        }
      end 

      def status_code
        404
      end
    end
  end
end

在application_controller.rb中,此异常由.处理

rescue_from Frog::Errors::FrogError, :with => :render_frog_error

def render_frog_error(exception)
   access_control_headers!
   render :json => exception, :status => exception.status_code
end

在我的项目中,我有BSON :: InvalidObjectId和Mongoid :: Errors :: DocumentNotFound异常.我想自己生成这个例外.我这样试试:

rescue_from BSON::InvalidObjectId do 
   |ex| raise Frog::Errors::NotFound.new(ex) 
end

但它不起作用.
我怎样才能再加上BSON和Mongoid异常?

最佳答案 我发现这个解决方案:

rescue_from BSON::InvalidObjectId, :with => :proxy_exception
rescue_from Mongoid::Errors::DocumentNotFound, :with => :proxy_exception

def proxy_exception(exception)
        exception = Frog::Errors::NotFound.new(exception)
        render_frog_error(exception) 
end
点赞