Sha256: 7705437f80c067c9700c75ac647107ade582797aaff0ae884bc4a583de72fce0
Contents?: true
Size: 869 Bytes
Versions: 16
Compression:
Stored size: 869 Bytes
Contents
module RocketJob class JobException include Plugins::Document embedded_in :job, inverse_of: :exception embedded_in :slice, inverse_of: :exception embedded_in :dirmon_entry, inverse_of: :exception # Name of the exception class field :class_name, type: String # Exception message field :message, type: String # Exception Backtrace [Array<String>] field :backtrace, type: Array, default: [] # Name of the server on which this exception occurred field :worker_name, type: String # The record within which this exception occurred field :record_number, type: Integer # Returns [JobException] built from the supplied exception def self.from_exception(exc) new( class_name: exc.class.name, message: exc.message, backtrace: exc.backtrace || [] ) end end end
Version data entries
16 entries across 16 versions & 1 rubygems