class BaseX::InvalidNumeral

Public Class Methods

new(invalid_char) click to toggle source
Calls superclass method
# File lib/base_x.rb, line 5
def initialize(invalid_char)
  super "Can't convert to integer, '#{invalid_char}' is not in the numeral list for this base"
end