telegram.error Module#
This module contains classes that represent Telegram errors.
Changed in version 20.0: Replaced Unauthorized by Forbidden.
- exception telegram.error.BadRequest(message)[source]#
Bases:
telegram.error.NetworkErrorRaised when Telegram could not process the request correctly.
- exception telegram.error.ChatMigrated(new_chat_id)[source]#
Bases:
telegram.error.TelegramErrorRaised when the requested group chat migrated to supergroup and has a new chat id.
- Parameters
new_chat_id (
int) – The new chat id of the group.
- exception telegram.error.Conflict(message)[source]#
Bases:
telegram.error.TelegramErrorRaised when a long poll or webhook conflicts with another one.
- exception telegram.error.Forbidden(message)[source]#
Bases:
telegram.error.TelegramErrorRaised when the bot has not enough rights to perform the requested action.
Changed in version 20.0: This class was previously named
Unauthorized.
- exception telegram.error.InvalidToken(message=None)[source]#
Bases:
telegram.error.TelegramErrorRaised when the token is invalid.
- Parameters
message (
str, optional) –Any additional information about the exception.
New in version 20.0.
- exception telegram.error.NetworkError(message)[source]#
Bases:
telegram.error.TelegramErrorBase class for exceptions due to networking errors.
- exception telegram.error.PassportDecryptionError(message)[source]#
Bases:
telegram.error.TelegramErrorSomething went wrong with decryption.
Changed in version 20.0: This class was previously named
TelegramDecryptionErrorand was available viatelegram.TelegramDecryptionError.
- exception telegram.error.RetryAfter(retry_after)[source]#
Bases:
telegram.error.TelegramErrorRaised when flood limits where exceeded.
- Parameters
retry_after (
int) – Time in seconds, after which the bot can retry the request.
- exception telegram.error.TelegramError(message)[source]#
Bases:
ExceptionBase class for Telegram errors.
- exception telegram.error.TimedOut(message=None)[source]#
Bases:
telegram.error.NetworkErrorRaised when a request took too long to finish.
- Parameters
message (
str, optional) –Any additional information about the exception.
New in version 20.0.