Exception: TooManyNumOfMembersError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/pghub/auto_assign.rb

Instance Method Summary collapse

Constructor Details

#initialize(team) ⇒ TooManyNumOfMembersError

Returns a new instance of TooManyNumOfMembersError.



8
9
10
11
# File 'lib/pghub/auto_assign.rb', line 8

def initialize(team)
  super
  @team = team
end

Instance Method Details

#to_sObject



13
14
15
# File 'lib/pghub/auto_assign.rb', line 13

def to_s
  "too many number of members per team #{@team}"
end