class NamedImports::Error::ConstantImportError
Public Class Methods
new(imported_name, imported_file, importer_file, importer_line)
click to toggle source
Calls superclass method
# File lib/named_imports/error.rb, line 30 def initialize(imported_name, imported_file, importer_file, importer_line) super("Unable to import #{imported_name} from #{imported_file} (import occurs in #{importer_file}:#{importer_line})") end