Sha256: 7f3eb5531a844038a1ccc87c4963f7960c75e0f25fd3e434a8fa3b0209c7b6c2
Contents?: true
Size: 494 Bytes
Versions: 10
Compression:
Stored size: 494 Bytes
Contents
require 'just_go/errors/error' module JustGo # = PointNotEmptyError # # A point not empty error with a message class PointNotEmptyError < Error # New not players turn errors can be instantiated with # # @option [String] message # the message to display. # # ==== Example: # # Instantiates a new PointNotEmptyError # JustGo::PointNotEmptyError.new("Custom Message") def initialize(message="Point is not empty") super end end end
Version data entries
10 entries across 10 versions & 1 rubygems