ó
:ÏOc           @   s9   d  Z  d e f d „  ƒ  YZ d e e f d „  ƒ  YZ d S(   sc   
 This module houses the GEOS exceptions, specifically, GEOSException and
 GEOSGeometryIndexError.
t   GEOSExceptionc           B   s   e  Z d  Z RS(   s8   The base GEOS exception, indicates a GEOS-related error.(   t   __name__t
   __module__t   __doc__(    (    (    s6   ../Django//lib/python/django/contrib/gis/geos/error.pyR       s   t   GEOSIndexErrorc           B   s   e  Z d  Z e Z RS(   s  
    This exception is raised when an invalid index is encountered, and has
    the 'silent_variable_feature' attribute set to true.  This ensures that
    django's templates proceed to use the next lookup type gracefully when
    an Exception is raised.  Fixes ticket #4740.
    (   R   R   R   t   Truet   silent_variable_failure(    (    (    s6   ../Django//lib/python/django/contrib/gis/geos/error.pyR   
   s   N(   R   t	   ExceptionR    t   KeyErrorR   (    (    (    s6   ../Django//lib/python/django/contrib/gis/geos/error.pyt   <module>   s   