Remove Redundant Scoping

Christopher Vollick created

Rubocop tells me I don't need "::"
Obviously... but I wrote it...

I wonder if I used to have something else called Exception that this was
distinguishing from at one point...

Change summary

bin/process_interac_email | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

bin/process_interac_email 🔗

@@ -56,7 +56,7 @@ EM.run do
 		BlatherNotify.publish "#{uuid}":
 			error_entry("💥 Exception #{e.class}", e, id_builder.call(uuid))
 	}.catch { |e|
-		if e.is_a?(::Exception)
+		if e.is_a?(Exception)
 			Sentry.capture_exception(e)
 		else
 			Sentry.capture_message(e.to_s)