Sha256: 9f6b7e0f97981b569cd881642aad871c3d1cb61b52ea0c165556ff576b6a0e82
Contents?: true
Size: 505 Bytes
Versions: 10
Compression:
Stored size: 505 Bytes
Contents
require 'just_go/errors/error' module JustGo # = PointNotFoundError # # A point not found error with a message class PointNotFoundError < Error # New not players turn errors can be instantiated with # # @option [String] message # the message to display. # # ==== Example: # # Instantiates a new PointNotFoundError # JustGo::PointNotFoundError.new("Custom Message") def initialize(message="Can't find point with that id") super end end end
Version data entries
10 entries across 10 versions & 1 rubygems