Method: Chess::InvalidFenFormatError#initialize

Defined in:
lib/chess/exceptions.rb

#initialize(fen_string) ⇒ InvalidFenFormatError

Returns a new instance of InvalidFenFormatError.

Parameters:

  • fen_string (String)

    The FEN string.



21
22
23
# File 'lib/chess/exceptions.rb', line 21

def initialize(fen_string)
  super("Invalid FEN string '#{fen_string}'")
end