Exception: Rugram::UserNotFoundError

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

Instance Method Summary collapse

Constructor Details

#initialize(user) ⇒ UserNotFoundError



3
4
5
6
# File 'lib/user_not_found_error.rb', line 3

def initialize(user)
  msg = "Instagram User Not Found: #{user}"
  super(msg)
end