Sha256: 6de33e1e668018283af5f4ddf204b4d815c12dbce74896a4bf7d1d1133bffe8b

Contents?: true

Size: 346 Bytes

Versions: 2

Compression:

Stored size: 346 Bytes

Contents

# frozen_string_literal: true

class Qi
  # The Error module contains custom error classes for the Qi game.
  module Error
    # The Drop class is a custom error class that inherits from IndexError.
    # It is raised when a drop operation in the game of Qi is invalid.
    #
    # @see IndexError
    class Drop < ::IndexError
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
qi-10.0.0.beta11 lib/qi/error/drop.rb
qi-10.0.0.beta10 lib/qi/error/drop.rb