Source code for ngsildclient.exceptions

#!/usr/bin/env python3

# Software Name: ngsildclient
# SPDX-FileCopyrightText: Copyright (c) 2021 Orange
# SPDX-License-Identifier: Apache 2.0
#
# This software is distributed under the Apache 2.0;
# see the NOTICE file for more details.
#
# Author: Fabien BATTELLO <fabien.battello@orange.com> et al.

"""
This module defines the NgsiError Exception that will be used as a base for all NGSI exceptions.
"""


[docs]class NgsiError(Exception): """The NgsiError base exception.""" pass