Exception: CopayNotifications::ProfileMissingEmail

Inherits:
StandardError
  • Object
show all
Defined in:
app/sidekiq/copay_notifications/mcp_notification_email_job.rb

Instance Method Summary collapse

Constructor Details

#initialize(vet360_id) ⇒ ProfileMissingEmail

Returns a new instance of ProfileMissingEmail.



5
6
7
8
9
# File 'app/sidekiq/copay_notifications/mcp_notification_email_job.rb', line 5

def initialize(vet360_id)
  @vet360_id = vet360_id
  message = "ProfileMissingEmail: Unable to derive an email address from vet360 id: #{@vet360_id}"
  super(message)
end