Repository URL to install this package:
|
Version:
2.1.15 ▾
|
# Pyrogram - Telegram MTProto API Client Library for Python
# Copyright (C) 2017-present Dan <https://github.com/delivrance>
#
# This file is part of Pyrogram.
#
# Pyrogram is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Pyrogram is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Pyrogram. If not, see <http://www.gnu.org/licenses/>.
from ..rpc_error import RPCError
class SeeOther(RPCError):
"""See Other"""
CODE = 303
"""``int``: RPC Error Code"""
NAME = __doc__
class FileMigrate(SeeOther):
"""The file to be accessed is currently stored in DC{value}"""
ID = "FILE_MIGRATE_X"
"""``str``: RPC Error ID"""
MESSAGE = __doc__
class NetworkMigrate(SeeOther):
"""The source IP address is associated with DC{value} (for registration)"""
ID = "NETWORK_MIGRATE_X"
"""``str``: RPC Error ID"""
MESSAGE = __doc__
class PhoneMigrate(SeeOther):
"""The phone number a user is trying to use for authorization is associated with DC{value}"""
ID = "PHONE_MIGRATE_X"
"""``str``: RPC Error ID"""
MESSAGE = __doc__
class StatsMigrate(SeeOther):
"""The statistics of the group/channel are stored in DC{value}"""
ID = "STATS_MIGRATE_X"
"""``str``: RPC Error ID"""
MESSAGE = __doc__
class UserMigrate(SeeOther):
"""The user whose identity is being used to execute queries is associated with DC{value} (for registration)"""
ID = "USER_MIGRATE_X"
"""``str``: RPC Error ID"""
MESSAGE = __doc__