File: //opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/orm/exc.pyo
�
��4]c @ s� d Z d d l m Z d d l m Z e e f Z d e j f d � � YZ e Z
d e j f d � � YZ d e j f d � � YZ
d
e j f d � � YZ d e j f d
� � YZ d e
f d � � YZ d e
f d � � YZ d e j f d � � YZ d e j f d � � YZ d e j f d � � YZ d e j f d � � YZ d e j f d � � YZ d � Z e j d � d � � Z d S( s SQLAlchemy ORM exceptions.i ( t exc( t utilt StaleDataErrorc B s e Z d Z RS( sa An operation encountered database state that is unaccounted for.
Conditions which cause this to happen include:
* A flush may have attempted to update or delete rows
and an unexpected number of rows were matched during
the UPDATE or DELETE statement. Note that when
version_id_col is used, rows in UPDATE or DELETE statements
are also matched against the current known version
identifier.
* A mapped object with version_id_col was refreshed,
and the version number coming back from the database does
not match that of the object itself.
* A object is detached from its parent object, however
the object was previously attached to a different parent
identity which was garbage collected, and a decision
cannot be made if the new parent was really the most
recent "parent".
( t __name__t
__module__t __doc__( ( ( sE /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/orm/exc.pyR s t
FlushErrorc B s e Z d Z RS( s0 A invalid condition was detected during flush().( R R R ( ( ( sE /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/orm/exc.pyR - s t
UnmappedErrorc B s e Z d Z RS( s? Base for exceptions that involve expected mappings not present.( R R R ( ( ( sE /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/orm/exc.pyR 1 s t ObjectDereferencedErrorc B s e Z d Z RS( sP An operation cannot complete due to an object being garbage
collected.
( R R R ( ( ( sE /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/orm/exc.pyR 5 s t DetachedInstanceErrorc B s e Z d Z d Z RS( sS An attempt to access unloaded attributes on a
mapped instance that is detached.t bhk3( R R R t code( ( ( sE /opt/alt/python27/lib64/python2.7/site-packages/sqlalchemy/orm/exc.pyR <