
    +h
                         d Z  G d de      Z G d dee      Z G d de      Z G d de      Z G d	 d
e      Z G d de      Z G d de      Z G d de      Z	 G d de      Z
 G d de      Z G d de      Zy)zException classes for _mysql and MySQLdb.

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

    https://www.python.org/dev/peps/pep-0249/
c                       e Zd ZdZdZy)
MySQLErrorz*Exception related to operation with MySQL.MySQLdbN__name__
__module____qualname____doc__     F/var/www/html/venv/lib/python3.12/site-packages/MySQLdb/_exceptions.pyr   r   	   s
    4Jr   r   c                       e Zd ZdZdZy)WarningzWException raised for important warnings like data truncations
    while inserting, etc.r   Nr   r
   r   r   r   r      s     Jr   r   c                       e Zd ZdZdZy)ErrorzQException that is the base class of all other error exceptions
    (not Warning).r   Nr   r
   r   r   r   r      s     Jr   r   c                       e Zd ZdZdZy)InterfaceErrorzkException raised for errors that are related to the database
    interface rather than the database itself.r   Nr   r
   r   r   r   r      s    2 Jr   r   c                       e Zd ZdZdZy)DatabaseErrorzAException raised for errors that are related to the
    database.r   Nr   r
   r   r   r   r   $   s     Jr   r   c                       e Zd ZdZdZy)	DataErrorzException raised for errors that are due to problems with the
    processed data like division by zero, numeric value out of range,
    etc.r   Nr   r
   r   r   r   r   +        Jr   r   c                       e Zd ZdZdZy)OperationalErrora;  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.r   Nr   r
   r   r   r   r   3   s    . Jr   r   c                       e Zd ZdZdZy)IntegrityErrorzException raised when the relational integrity of the database
    is affected, e.g. a foreign key check fails, duplicate key,
    etc.r   Nr   r
   r   r   r   r   =   r   r   r   c                       e Zd ZdZdZy)InternalErrorzException raised when the database encounters an internal
    error, e.g. the cursor is not valid anymore, the transaction is
    out of sync, etc.r   Nr   r
   r   r   r   r   E   s     Jr   r   c                       e Zd ZdZdZy)ProgrammingErrorzException raised for programming errors, e.g. table not found
    or already exists, syntax error in the SQL statement, wrong number
    of parameters specified, etc.r   Nr   r
   r   r   r   r   M   s    % Jr   r   c                       e Zd ZdZdZy)NotSupportedErrorzException 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.r   Nr   r
   r   r   r!   r!   U   s    $
 Jr   r!   N)r	   	Exceptionr   r   r   r   r   r   r   r   r   r   r!   r
   r   r   <module>r#      s    gz J U E  } ] M }  r   