troessner/reek

View on GitHub
lib/reek/errors/config_file_error.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

require_relative 'base_error'

module Reek
  module Errors
    # Gets raised when Reek is unable to process the source due to bad config file
    class ConfigFileError < BaseError
    end
  end
end