__  __    __   __  _____      _            _          _____ _          _ _ 
 |  \/  |   \ \ / / |  __ \    (_)          | |        / ____| |        | | |
 | \  / |_ __\ V /  | |__) | __ ___   ____ _| |_ ___  | (___ | |__   ___| | |
 | |\/| | '__|> <   |  ___/ '__| \ \ / / _` | __/ _ \  \___ \| '_ \ / _ \ | |
 | |  | | |_ / . \  | |   | |  | |\ V / (_| | ||  __/  ____) | | | |  __/ | |
 |_|  |_|_(_)_/ \_\ |_|   |_|  |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1
 if you need WebShell for Seo everyday contact me on Telegram
 Telegram Address : @jackleet
        
        
For_More_Tools: Telegram: @jackleet | Bulk Smtp support mail sender | Business Mail Collector | Mail Bouncer All Mail | Bulk Office Mail Validator | Html Letter private



Upload:

Command:

aptanhua@216.73.216.243: ~ $
"""Exception classes for _mysql and MySQLdb.

These classes are dictated by the DB API v2.0:

    https://www.python.org/dev/peps/pep-0249/
"""


class MySQLError(Exception):
    """Exception related to operation with MySQL."""

    __module__ = "MySQLdb"


class Warning(Warning, MySQLError):
    """Exception raised for important warnings like data truncations
    while inserting, etc."""

    __module__ = "MySQLdb"


class Error(MySQLError):
    """Exception that is the base class of all other error exceptions
    (not Warning)."""

    __module__ = "MySQLdb"


class InterfaceError(Error):
    """Exception raised for errors that are related to the database
    interface rather than the database itself."""

    __module__ = "MySQLdb"


class DatabaseError(Error):
    """Exception raised for errors that are related to the
    database."""

    __module__ = "MySQLdb"


class DataError(DatabaseError):
    """Exception raised for errors that are due to problems with the
    processed data like division by zero, numeric value out of range,
    etc."""

    __module__ = "MySQLdb"


class OperationalError(DatabaseError):
    """Exception raised for errors that are related to the database's
    operation and not necessarily under the control of the programmer,
    e.g. an unexpected disconnect occurs, the data source name is not
    found, a transaction could not be processed, a memory allocation
    error occurred during processing, etc."""

    __module__ = "MySQLdb"


class IntegrityError(DatabaseError):
    """Exception raised when the relational integrity of the database
    is affected, e.g. a foreign key check fails, duplicate key,
    etc."""

    __module__ = "MySQLdb"


class InternalError(DatabaseError):
    """Exception raised when the database encounters an internal
    error, e.g. the cursor is not valid anymore, the transaction is
    out of sync, etc."""

    __module__ = "MySQLdb"


class ProgrammingError(DatabaseError):
    """Exception raised for programming errors, e.g. table not found
    or already exists, syntax error in the SQL statement, wrong number
    of parameters specified, etc."""

    __module__ = "MySQLdb"


class NotSupportedError(DatabaseError):
    """Exception raised in case a method or database API was used
    which is not supported by the database, e.g. requesting a
    .rollback() on a connection that does not support transaction or
    has transactions turned off."""

    __module__ = "MySQLdb"

Filemanager

Name Type Size Permission Actions
__pycache__ Folder 0755
constants Folder 0755
__init__.py File 3.48 KB 0644
_exceptions.py File 2.5 KB 0644
_mysql.c File 86.07 KB 0644
_mysql.cpython-312-x86_64-linux-gnu.so File 232.08 KB 0755
connections.py File 12.84 KB 0644
converters.py File 3.51 KB 0644
cursors.py File 15.96 KB 0644
release.py File 114 B 0644
times.py File 3.67 KB 0644