Flowdock
method

new

Importance_0
v5.0.0.1 - Show latest stable - 0 notes - Class: DeserializationError
new(e = nil) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activejob/lib/active_job/arguments.rb, line 8
    def initialize(e = nil) #:nodoc:
      if e
        ActiveSupport::Deprecation.warn("Passing #original_exception is deprecated and has no effect. "                                          "Exceptions will automatically capture the original exception.", caller)
      end

      super("Error while trying to deserialize arguments: #{$!.message}")
      set_backtrace $!.backtrace
    end
Register or log in to add new notes.