class Gratitude::TipUpdateError
Public Class Methods
new(usernames)
click to toggle source
Calls superclass method
# File lib/gratitude/error.rb, line 21 def initialize(usernames) combined_usernames = usernames.join(", ") super( "There was an error updating the tip(s) for the following user(s): "\ "#{combined_usernames}.") end