]> git.proxmox.com Git - mirror_edk2.git/blame - BaseTools/Source/Python/Eot/ParserWarning.py
BaseTools: use set instead of list for a variable to be used with in
[mirror_edk2.git] / BaseTools / Source / Python / Eot / ParserWarning.py
CommitLineData
52302d4d
LG
1## @file\r
2# Warning information of Eot\r
3#\r
40d841f6 4# Copyright (c) 2007 - 2010, Intel Corporation. All rights reserved.<BR>\r
52302d4d 5#\r
40d841f6 6# This program and the accompanying materials\r
52302d4d
LG
7# are licensed and made available under the terms and conditions of the BSD License\r
8# which accompanies this distribution. The full text of the license may be found at\r
9# http://opensource.org/licenses/bsd-license.php\r
10#\r
11# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
12# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
13#\r
14class Warning (Exception):\r
15 ## The constructor\r
16 #\r
17 # @param self The object pointer\r
18 # @param Str The message to record\r
19 # @param File The FDF name\r
20 # @param Line The Line number that error occurs\r
21 #\r
22 def __init__(self, Str, File = None, Line = None):\r
23 self.message = Str\r
24 self.FileName = File\r
25 self.LineNumber = Line\r
26 self.ToolName = 'EOT'