mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-23 01:46:35 +03:00
17 lines
347 B
Python
17 lines
347 B
Python
|
from . import FloodError
|
||
|
|
||
|
|
||
|
class FloodWaitError(FloodError):
|
||
|
def __init__(self, **kwargs):
|
||
|
self.seconds = kwargs['extra']
|
||
|
super(Exception, self).__init__(
|
||
|
self,
|
||
|
'A wait of {} seconds is required.'
|
||
|
.format(self.seconds)
|
||
|
)
|
||
|
|
||
|
|
||
|
rpc_420_errors = {
|
||
|
'FLOOD_WAIT_(\d+)': FloodWaitError
|
||
|
}
|