- fixes error message in defensive programing

This commit is contained in:
Vincent Biret 2022-08-12 12:20:49 -04:00 коммит произвёл GitHub
Родитель 7fcd361955
Коммит 6cdb3653ce
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -174,7 +174,7 @@ class RequestInformation(Generic[QueryParams]):
values (Union[T, List[T]]): _description_
"""
if not request_adapter:
raise Exception("HttpCore cannot be null")
raise Exception("RequestAdapter cannot be null")
if not content_type:
raise Exception("Content Type cannot be null")
if not values: