Sha256: 1b8a0edcc83894ec4fdba95cbf2879a072e9fd13ee0fee29df0562dbc85d5acf
Contents?: true
Size: 1.06 KB
Versions: 3
Compression:
Stored size: 1.06 KB
Contents
# frozen_string_literal: true require_relative 'base_error' module Reek module Errors # Gets raised when Reek is unable to process the source class IncomprehensibleSourceError < BaseError TEMPLATE = 'Source %<source>s cannot be processed by Reek.' LONG_TEMPLATE = <<-MESSAGE !!! %<message>s This is most likely a Reek bug. It would be great if you could report this back to the Reek team by opening a corresponding issue at https://github.com/troessner/reek/issues. Please make sure to include the source in question, the Reek version and the original exception below. Exception message: %<exception>s Original exception: %<original>s !!! MESSAGE def initialize(origin:) super format(TEMPLATE, source: origin) end def long_message format(LONG_TEMPLATE, message: message, exception: cause.inspect, original: cause.backtrace.join("\n\t")) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
reek-5.0.2 | lib/reek/errors/incomprehensible_source_error.rb |
reek-5.0.1 | lib/reek/errors/incomprehensible_source_error.rb |
reek-5.0.0 | lib/reek/errors/incomprehensible_source_error.rb |