class TicTacToeRZ::Languages::Language

Attributes

tag[RW]

Public Class Methods

new(tag) click to toggle source
# File lib/tic_tac_toe_rz/tictactoeruby.core/languages/language.rb, line 9
def initialize(tag)
  raise Exceptions::NilReferenceError, "tag" if tag.nil?
  raise Exceptions::ArgumentError, "tag" if tag == ""
  @tag = tag
end