RPC ErrorsΒΆ
All Pyrofork 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 Pyrofork
follow the usual PascalCase convention.
from pyrogram.errors import FloodWait
try:
    ...
except FloodWait as e:
    ...