Method: Sentry::Configuration#error_messages

Defined in:
lib/sentry/configuration.rb

#error_messagesObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

[View source]

665
666
667
668
# File 'lib/sentry/configuration.rb', line 665

def error_messages
  @errors = [@errors[0]] + @errors[1..-1].map(&:downcase) # fix case of all but first
  @errors.join(", ")
end