]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/GenBuild/org/tianocore/build/exception/XmlParseException.java
Remove build warning.
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / exception / XmlParseException.java
1 /** @file
2 XmlParseException class.
3
4 The class handle the exception throwed by entity class.
5
6 Copyright (c) 2006, Intel Corporation
7 All rights reserved. This program and the accompanying materials
8 are licensed and made available under the terms and conditions of the BSD License
9 which accompanies this distribution. The full text of the license may be found at
10 http://opensource.org/licenses/bsd-license.php
11
12 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
13 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
14
15 **/
16 package org.tianocore.build.exception;
17
18 /**
19 The class handle the exception throwed by entity class.
20 **/
21 public class XmlParseException extends GenBuildException {
22 static final long serialVersionUID = -8034897190740066934L;
23 /**
24 Constructure function
25
26 @param expStr exception message string.
27 **/
28 public XmlParseException(String expStr) {
29 super("[XmlParseException]:" + expStr);
30 }
31
32 public XmlParseException() {
33 super();
34 }
35 }