Skip to content

Latest commit

 

History

History
72 lines (54 loc) · 1.44 KB

File metadata and controls

72 lines (54 loc) · 1.44 KB

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:
    ...

303 - SeeOther

400 - BadRequest

401 - Unauthorized

403 - Forbidden

406 - NotAcceptable

420 - Flood

500 - InternalServerError