class Rootage::NormalizerTypeError
‘NormalizerTypeError` is raised when the normalization type is unknown. This error means that it’s a PIONE’s bug.
Public Class Methods
new(type)
click to toggle source
# File lib/rootage/exception.rb, line 59 def initialize(type) @type = type end
Public Instance Methods
message()
click to toggle source
# File lib/rootage/exception.rb, line 63 def message 'Normalization type "%s" is unknown.' % @type end