RPC Errors#
All Pyrogram API errors live inside the errors
sub-package: pyrogram.errors
.
The errors ids listed here are shown as UPPER_SNAKE_CASE, but the actual exception names to import from Pyrogram
follow the usual PascalCase convention.
from pyrogram.errors import FloodWait
try:
...
except FloodWait as e:
...