Sha256: bc2d491fd5630dcb51d20a26b66fe55c6dd22a7a931c6d206fe8d98b0e81f365
Contents?: true
Size: 292 Bytes
Versions: 8
Compression:
Stored size: 292 Bytes
Contents
# frozen_string_literal: true module Measured class CycleDetected < UnitError attr_reader :unit def initialize(unit) super("The following conversion introduces cycles in the unit system: #{unit}. Remove the conversion or fix the cycle.") @unit = unit end end end
Version data entries
8 entries across 8 versions & 1 rubygems