method

catch_and_ignore

catch_and_ignore(throwable, &block)
private

No documentation available.

# File activesupport/lib/active_support/messages/codec.rb, line 45
        def catch_and_ignore(throwable, &block)
          catch throwable do
            return block.call
          end
          nil
        end