Sha256: 07d88a6ab45f5ccc1a6c4b7bfc1cc37be933679fdff05dfb9a329b1a827ee27c
Contents?: true
Size: 263 Bytes
Versions: 8
Compression:
Stored size: 263 Bytes
Contents
# frozen_string_literal: true module Measured class MissingConversionPath < UnitError attr_reader :from, :to def initialize(from, to) super("Cannot find conversion path from #{from} to #{to}.") @from = from @to = to end end end
Version data entries
8 entries across 8 versions & 1 rubygems