o
    ED©i  ã                   @   sê   d Z G dd„ deƒZG dd„ deeƒZG dd„ deƒZG dd„ deƒZG d	d
„ d
eƒZG dd„ deƒZG dd„ deƒZG dd„ deƒZ	G dd„ deƒZ
G dd„ deƒZG dd„ deƒZG dd„ deƒZG dd„ deƒZG dd„ deƒZdS )a9  
The driver exception classes here include all named exceptions required by th DB API 2.0 specification. It's not clear
how useful that naming convention is, but the convention is used for potential improved compatibility with other
libraries.  In most cases docstring are taken from the DBIApi 2.0 documentation
c                   @   ó   e Zd ZdZdS )ÚClickHouseErrorz/Exception related to operation with ClickHouse.N©Ú__name__Ú
__module__Ú__qualname__Ú__doc__© r   r   ú]/var/www/Datamplify/venv/lib/python3.10/site-packages/clickhouse_connect/driver/exceptions.pyr      ó    r   c                   @   r   )ÚWarningzWException raised for important warnings like data truncations
    while inserting, etc.Nr   r   r   r   r	   r      r
   r   c                   @   r   )ÚErrorzQException that is the base class of all other error exceptions
    (not Warning).Nr   r   r   r   r	   r      r
   r   c                   @   r   )ÚInterfaceErrorzkException raised for errors that are related to the database
    interface rather than the database itself.Nr   r   r   r   r	   r      r
   r   c                   @   r   )ÚDatabaseErrorzAException raised for errors that are related to the
    database.Nr   r   r   r   r	   r      r
   r   c                   @   r   )Ú	DataErrorzŒException raised for errors that are due to problems with the
    processed data like division by zero, numeric value out of range,
    etc.Nr   r   r   r   r	   r   !   r
   r   c                   @   r   )Ú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.Nr   r   r   r   r	   r   '   r
   r   c                   @   r   )ÚIntegrityErrorz‡Exception raised when the relational integrity of the database
    is affected, e.g. a foreign key check fails, duplicate key,
    etc.Nr   r   r   r   r	   r   /   r
   r   c                   @   r   )ÚInternalErrorz“Exception raised when the database encounters an internal
    error, e.g. the cursor is not valid anymore, the transaction is
    out of sync, etc.Nr   r   r   r   r	   r   5   r
   r   c                   @   r   )ÚProgrammingErrorz¦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.Nr   r   r   r   r	   r   ;   r
   r   c                   @   r   )ÚNotSupportedErrorzÞ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.Nr   r   r   r   r	   r   A   r
   r   c                       s    e Zd ZdZ‡ fdd„Z‡  ZS )ÚStreamClosedErrorzHException raised when a stream operation is executed on a closed stream.c                    s   t ƒ  d¡ d S )Nz2Executing a streaming operation on a closed stream)ÚsuperÚ__init__)Úself©Ú	__class__r   r	   r   K   s   zStreamClosedError.__init__)r   r   r   r   r   Ú__classcell__r   r   r   r	   r   H   s    r   c                   @   r   )ÚStreamCompleteExceptionzQ Internal exception used to indicate the end of a ClickHouse query result stream.Nr   r   r   r   r	   r   O   r
   r   c                   @   r   )ÚStreamFailureErrorz Stream failed unexpectedly Nr   r   r   r   r	   r   S   r
   r   N)r   Ú	Exceptionr   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r   r	   Ú<module>   s    