class RadixEncoding::Encoding::DataTypeNotSupportedError
Public Class Methods
new(data_type:)
click to toggle source
Calls superclass method
# File lib/radix_encoding/encoding/errors.rb, line 15 def initialize(data_type:) super <<~MESSAGE The provided data is of a not supported type #{data_type}. Only String is supported. MESSAGE end