class Twb::Util::JoinTablePair

Attributes

from[R]
to[R]

Public Class Methods

new(from, to) click to toggle source
# File lib/twb/util/joinUtilities.rb, line 30
def initialize(from, to)
  raise ParamaterException.new("'From' cannot be nil.") if from.nil?
  raise ParamaterException.new("'To' cannot be nil.")   if to.nil?
  @from = from
  @to   = to
end