class SFRP::Poly::UndeterminableTypeError
Public Class Methods
new(identifier, typing)
click to toggle source
# File lib/sfrp/poly/exception.rb, line 6 def initialize(identifier, typing) @identifier = identifier @typing = typing end
Public Instance Methods
message()
click to toggle source
# File lib/sfrp/poly/exception.rb, line 11 def message "undeterminable type #{@typing}" end