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