]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/CommonDataClass/Exceptions.py
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / BaseTools / Source / Python / CommonDataClass / Exceptions.py
CommitLineData
0d2711a6
LG
1## @file\r
2# This file is used to define common Exceptions class used in python tools\r
3#\r
4# Copyright (c) 2011, Intel Corporation. All rights reserved.<BR>\r
2e351cbe 5# SPDX-License-Identifier: BSD-2-Clause-Patent\r
0d2711a6
LG
6\r
7## Exceptions used in Expression\r
8class EvaluationException(Exception):\r
9 pass\r
10\r
11class BadExpression(EvaluationException):\r
12 pass\r
13\r
14class WrnExpression(Exception):\r
15 pass\r
16\r
17## Exceptions used in macro replacements\r
18class MacroException(Exception):\r
19 pass\r
20\r
21class SymbolNotFound(MacroException):\r
22 pass\r
23\r