class Measured::MissingConversionPath

Attributes

from[R]
to[R]

Public Class Methods

new(from, to) click to toggle source
Calls superclass method
# File lib/measured/missing_conversion_path.rb, line 6
def initialize(from, to)
  super("Cannot find conversion path from #{from} to #{to}.")
  @from = from
  @to = to
end