class Yoda::GemImportError

Attributes

name[R]

@return [String]

version[R]

@return [String]

Public Class Methods

new(name:, version:) click to toggle source
Calls superclass method
# File lib/yoda/errors.rb, line 10
def initialize(name:, version:)
  @name = name
  @version = version
  super(msg)
end

Public Instance Methods

msg() click to toggle source
# File lib/yoda/errors.rb, line 16
def msg
  "Failed to import #{name} #{version}"
end