* move components to definitions field * Also update the references * validate the top level fields and add version * raise exception on unknown fields * newline * unit tests * set version to 0.1.0 * newline
16 lines
299 B
Python
16 lines
299 B
Python
#
|
|
# Copyright (c) 2022 Airbyte, Inc., all rights reserved.
|
|
#
|
|
|
|
|
|
class ReadException(Exception):
|
|
"""
|
|
Raise when there is an error reading data from an API Source
|
|
"""
|
|
|
|
|
|
class InvalidConnectorDefinitionException(Exception):
|
|
"""
|
|
Raise when the connector definition is invalid
|
|
"""
|