class RBS::NoSuperclassFoundError
Attributes
Public Class Methods
Source
# File bundled-src/rbs-3.10.0/lib/rbs/errors.rb, line 178 def self.check!(type_name, env:, location:) if env.module_name?(type_name) return end raise new(type_name: type_name, location: location) end
Source
# File bundled-src/rbs-3.10.0/lib/rbs/errors.rb, line 171 def initialize(type_name:, location:) @type_name = type_name @location = location super "#{Location.to_string location}: Could not find super class: #{type_name}" end
Calls superclass method
Exception::new