class Aeternitas::Errors::Ignored

Wrapper for ignored errors. This can be used to conveniently exclude certain errors from e.g. error trackers @!attribute [r] original error

the wrapped error

Attributes

original_error[R]

Public Class Methods

new(original_error) click to toggle source

Create a new Instance.

@param [StandardError] original_error the wrapped error

Calls superclass method
# File lib/aeternitas/errors.rb, line 13
def initialize(original_error)
  @original_error = original_error
  super("#{original_error.class} - #{original_error.message}")
end