Exception: SFRP::Poly::UndeterminableTypeError
- Inherits:
-
CompileError
- Object
- StandardError
- CompileError
- SFRP::Poly::UndeterminableTypeError
- Defined in:
- lib/sfrp/poly/exception.rb
Instance Method Summary collapse
-
#initialize(identifier, typing) ⇒ UndeterminableTypeError
constructor
A new instance of UndeterminableTypeError.
- #message ⇒ Object
Constructor Details
#initialize(identifier, typing) ⇒ UndeterminableTypeError
Returns a new instance of UndeterminableTypeError.
6 7 8 9 |
# File 'lib/sfrp/poly/exception.rb', line 6 def initialize(identifier, typing) @identifier = identifier @typing = typing end |
Instance Method Details
#message ⇒ Object
11 12 13 |
# File 'lib/sfrp/poly/exception.rb', line 11 def "undeterminable type #{@typing}" end |