module Codebreaker module Errors class GameOverError < StandardError def initialize(msg = I18n.t('errors.game_over')) super end end end end