diff options
Diffstat (limited to 'roms/edk2/BaseTools/Source/Python/Eot/EotToolError.py')
-rw-r--r-- | roms/edk2/BaseTools/Source/Python/Eot/EotToolError.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roms/edk2/BaseTools/Source/Python/Eot/EotToolError.py b/roms/edk2/BaseTools/Source/Python/Eot/EotToolError.py new file mode 100644 index 000000000..d4f4f3a18 --- /dev/null +++ b/roms/edk2/BaseTools/Source/Python/Eot/EotToolError.py @@ -0,0 +1,15 @@ +## @file
+# Standardized Error Handling infrastructures.
+#
+# Copyright (c) 2008 - 2010, Intel Corporation. All rights reserved.<BR>
+# SPDX-License-Identifier: BSD-2-Clause-Patent
+#
+
+# Error id
+ERROR_1 = 1000
+
+# Error message
+gEccErrorMessage = {
+ ERROR_1 : "RESERVED"
+ }
+
|