mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-24 20:11:59 +00:00
14 lines
321 B
Python
14 lines
321 B
Python
#
|
|
# SPDX-FileCopyrightText: 2021 Espressif Systems (Shanghai) CO LTD
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
class LdGenFailure(RuntimeError):
|
|
"""
|
|
Parent class for any ldgen runtime failure which is due to input data
|
|
"""
|
|
|
|
def __init__(self, message):
|
|
super(LdGenFailure, self).__init__(message)
|