diff --git a/lib/gitlab/email/handler/base_handler.rb b/lib/gitlab/email/handler/base_handler.rb
index 230d13feea982f87845b213d9caa01d6ce3ab4dc..dcbad5bdb2983c3837658416de2755cc5c0b4aa3 100644
--- a/lib/gitlab/email/handler/base_handler.rb
+++ b/lib/gitlab/email/handler/base_handler.rb
@@ -42,7 +42,7 @@ module Gitlab
           end.join
         end
 
-        def verify_record(record, exception, error_title)
+        def verify_record!(record, exception, error_title)
           return if record.persisted?
 
           msg = error_title + record.errors.full_messages.map do |error|
diff --git a/lib/gitlab/email/handler/create_issue_handler.rb b/lib/gitlab/email/handler/create_issue_handler.rb
index 259d74a83bf095253828dfe74a26ddae68f30426..cba8f2b61f6c72ad87670f1f617e9b49d634155f 100644
--- a/lib/gitlab/email/handler/create_issue_handler.rb
+++ b/lib/gitlab/email/handler/create_issue_handler.rb
@@ -12,7 +12,7 @@ module Gitlab
         def execute
           validate_permission!(:create_issue)
 
-          verify_record(
+          verify_record!(
             create_issue,
             InvalidIssueError,
             "The issue could not be created for the following reasons:"
diff --git a/lib/gitlab/email/handler/create_note_handler.rb b/lib/gitlab/email/handler/create_note_handler.rb
index 7252906fd48b6c8e6ff9e2187ab7aa4882b4cdc1..282f1844097cfb1fb542ceb0c5206084507a641e 100644
--- a/lib/gitlab/email/handler/create_note_handler.rb
+++ b/lib/gitlab/email/handler/create_note_handler.rb
@@ -18,7 +18,7 @@ module Gitlab
           raise NoteableNotFoundError unless sent_notification.noteable
           raise EmptyEmailError if message.blank?
 
-          verify_record(
+          verify_record!(
             create_note,
             InvalidNoteError,
             "The comment could not be created for the following reasons:"