Includes CSV schema inference & record parser (#27176) --------- Co-authored-by: Sherif A. Nada <snadalive@gmail.com> Co-authored-by: Alexandre Girard <alexandre@airbyte.io>
24 lines
306 B
Python
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
|