that's too much!

This commit is contained in:
2024-12-19 20:22:56 -08:00
parent 0020a609dd
commit 32cd60e92b
8443 changed files with 1446950 additions and 42 deletions

View File

@@ -0,0 +1,32 @@
class DataSourceError(RuntimeError):
"""Errors relating to opening or closing an OGRDataSource (with >= 1 layers)"""
pass
class DataLayerError(RuntimeError):
"""Errors relating to working with a single OGRLayer"""
pass
class CRSError(DataLayerError):
"""Errors relating to getting or setting CRS values"""
pass
class FeatureError(DataLayerError):
"""Errors related to reading or writing a feature"""
pass
class GeometryError(DataLayerError):
"""Errors relating to getting or setting a geometry field"""
pass
class FieldError(DataLayerError):
"""Errors relating to getting or setting a non-geometry field"""