Sha256: f921cddabc66c44b490460b6ebc1447008b9cf74744b0f839b80a3385599eba9
Contents?: true
Size: 467 Bytes
Versions: 24
Compression:
Stored size: 467 Bytes
Contents
module APMInsight module Errors class ExceptionRecord attr_reader :time, :message, :exception def initialize(exception, time = Time.now) @time = time.to_f * 1000; @message = exception.message @exception = exception end def ==(obj) return obj != nil && @exception == obj.exception end def hash return @exception.hash end end end end
Version data entries
24 entries across 24 versions & 2 rubygems