10c675d534
* add license header to modules * check license header at linting time
16 lines
278 B
Python
16 lines
278 B
Python
# SPDX-FileCopyrightText: 2022-present deepset GmbH <info@deepset.ai>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
class DocumentStoreError(Exception):
|
|
pass
|
|
|
|
|
|
class DuplicateDocumentError(DocumentStoreError):
|
|
pass
|
|
|
|
|
|
class MissingDocumentError(DocumentStoreError):
|
|
pass
|