Exception: Slacks::AlreadyRespondedError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/slacks/errors.rb

Instance Method Summary collapse

Constructor Details

#initialize(message = nil) ⇒ AlreadyRespondedError

Returns a new instance of AlreadyRespondedError.



28
29
30
# File 'lib/slacks/errors.rb', line 28

def initialize(message=nil)
  super message || "You have already replied to this Slash Command; you can only reply once"
end