Sha256: 8ea095e0ac48df8d3c82bdc35748a473e8e5a045e46fd2e2df713351f40aab10
Contents?: true
Size: 287 Bytes
Versions: 31
Compression:
Stored size: 287 Bytes
Contents
# -*- encoding: utf-8 -*- # -*- frozen_string_literal: true -*- # -*- warn_indent: true -*- module UnitMeasurements class ParseError < BaseError attr_reader :string def initialize(string) @string = string super("Unable to parse: '#{string}'.") end end end
Version data entries
31 entries across 31 versions & 1 rubygems