123456789_123456789_123456789_123456789_123456789_

Exception: RBS::NoTypeFoundError

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, DefinitionError, BaseError, StandardError
Instance Chain:
Inherits: RBS::DefinitionError
Defined in: lib/rbs/errors.rb

Class Method Summary

Instance Attribute Summary

Instance Method Summary

Constructor Details

.new(type_name:, location:) ⇒ NoTypeFoundError

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 146

def initialize(type_name:, location:)
  @type_name = type_name
  @location = location

  super "#{Location.to_string location}: Could not find #{type_name}"
end

Class Method Details

.check!(type_name, env:, location:)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 153

def self.check!(type_name, env:, location:)
  env.type_name?(type_name) or raise new(type_name: type_name, location: location)
  type_name
end

Instance Attribute Details

#location (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 144

attr_reader :location

#type_name (readonly)

[ GitHub ]

  
# File 'lib/rbs/errors.rb', line 143

attr_reader :type_name