1
0
mirror of synced 2026-01-07 18:06:03 -05:00
Files
airbyte/airbyte-cdk/python/airbyte_cdk/sources/file_based/exceptions.py
Catherine Noll f464a330f8 File-based CDK module scaffolding (#27122)
Includes CSV schema inference & record parser (#27176)

---------

Co-authored-by: Sherif A. Nada <snadalive@gmail.com>
Co-authored-by: Alexandre Girard <alexandre@airbyte.io>
2023-06-19 11:01:11 -04:00

24 lines
306 B
Python

#
# Copyright (c) 2023 Airbyte, Inc., all rights reserved.
#
class ConfigValidationError(Exception):
pass
class MissingSchemaError(Exception):
pass
class RecordParseError(Exception):
pass
class SchemaInferenceError(Exception):
pass
class UndefinedParserError(Exception):
pass