Exception: RBS::GenericParameterMismatchError
- Inherits:
-
StandardError
- Object
- StandardError
- RBS::GenericParameterMismatchError
- Defined in:
- lib/rbs/errors.rb
Instance Attribute Summary collapse
-
#decl ⇒ Object
readonly
Returns the value of attribute decl.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
-
#initialize(name:, decl:) ⇒ GenericParameterMismatchError
constructor
A new instance of GenericParameterMismatchError.
Constructor Details
#initialize(name:, decl:) ⇒ GenericParameterMismatchError
Returns a new instance of GenericParameterMismatchError.
284 285 286 287 288 |
# File 'lib/rbs/errors.rb', line 284 def initialize(name:, decl:) @name = name @decl = decl super "#{Location.to_string decl.location}: Generic parameters mismatch: #{name}" end |
Instance Attribute Details
#decl ⇒ Object (readonly)
Returns the value of attribute decl.
282 283 284 |
# File 'lib/rbs/errors.rb', line 282 def decl @decl end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
281 282 283 |
# File 'lib/rbs/errors.rb', line 281 def name @name end |