class Grape::Exceptions::ValidationErrors

def full_messages

def full_messages
  messages = map do |attributes, error|
    I18n.t(
      ERRORS_FORMAT_KEY,
      default: DEFAULT_ERRORS_FORMAT,
      attributes: translate_attributes(attributes),
      message: error.message
    )
  end
  messages.uniq!
  messages
end