Module mbed_build.exceptions
Public exceptions raised by the package.
Expand source code
#
# Copyright (C) 2020 Arm Mbed. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
#
"""Public exceptions raised by the package."""
from mbed_tools_lib.exceptions import ToolsError
class MbedBuildError(ToolsError):
"""Base public exception for the mbed-build package."""
class InvalidExportOutputDirectory(MbedBuildError):
"""It is not possible to export to the provided output directory."""
Classes
class InvalidExportOutputDirectory (...)
-
It is not possible to export to the provided output directory.
Expand source code
class InvalidExportOutputDirectory(MbedBuildError): """It is not possible to export to the provided output directory."""
Ancestors
- MbedBuildError
- mbed_tools_lib.exceptions.ToolsError
- builtins.Exception
- builtins.BaseException
class MbedBuildError (...)
-
Base public exception for the mbed-build package.
Expand source code
class MbedBuildError(ToolsError): """Base public exception for the mbed-build package."""
Ancestors
- mbed_tools_lib.exceptions.ToolsError
- builtins.Exception
- builtins.BaseException
Subclasses