class TooManyNumOfMembersError

Public Class Methods

new(team) click to toggle source
Calls superclass method
# File lib/pghub/auto_assign.rb, line 8
def initialize(team)
  super
  @team = team
end

Public Instance Methods

to_s() click to toggle source
# File lib/pghub/auto_assign.rb, line 13
def to_s
  "too many number of members per team #{@team}"
end