Exception: RBS::SuperclassMismatchError
- Inherits:
-
StandardError
- Object
- StandardError
- RBS::SuperclassMismatchError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#entry ⇒ Object
readonly
Returns the value of attribute entry.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name:, entry:) ⇒ SuperclassMismatchError
constructor
A new instance of SuperclassMismatchError.
Constructor Details
#initialize(name:, entry:) ⇒ SuperclassMismatchError
Returns a new instance of SuperclassMismatchError.
253 254 255 256 257 |
# File 'lib/rbs/errors.rb', line 253 def initialize(name:, entry:) @name = name @entry = entry super "#{Location.to_string entry.primary.decl.location}: Superclass mismatch: #{name}" end |
Instance Attribute Details
#entry ⇒ Object (readonly)
Returns the value of attribute entry.
251 252 253 |
# File 'lib/rbs/errors.rb', line 251 def entry @entry end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
250 251 252 |
# File 'lib/rbs/errors.rb', line 250 def name @name end |