module Pluginscan class Error < StandardError; end class UnknownIssuesFormat < Error; end class IOError < Error def self.message(file_class) "Expected error_list_file to be an I/O object (e.g. a file) which implements `puts`. Got a #{file_class}" end end end