From 1c444450888226c6c65ae678a3031d17dc153a7c Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Fri, 12 Jan 2024 07:08:38 +0530 Subject: [PATCH] chore: Update the error message to the correct one (#8646) - Update the error message in reply_mailbox to more appropriate one. --- app/mailboxes/reply_mailbox.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/mailboxes/reply_mailbox.rb b/app/mailboxes/reply_mailbox.rb index 82181ad3b..d60533856 100644 --- a/app/mailboxes/reply_mailbox.rb +++ b/app/mailboxes/reply_mailbox.rb @@ -83,7 +83,7 @@ class ReplyMailbox < ApplicationMailbox end def validate_resource(resource) - raise "#{resource.class.name} not found" if resource.nil? + raise "Email conversation with uuid: #{conversation_uuid} not found" if resource.nil? resource end