]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/GenBuild/org/tianocore/build/exception/AutoGenException.java
Change to new XML Schema.
[mirror_edk2.git] / Tools / Source / GenBuild / org / tianocore / build / exception / AutoGenException.java
1 /** @file
2 AutoGenException 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 /**
20 The class handle the exception throwed by entity class.
21 **/
22 public class AutoGenException extends GenBuildException {
23 //static final long serialVersionUID = -8034897190740066939L;
24 /**
25 Constructure function
26
27 @param expStr exception message string.
28 **/
29 public AutoGenException(String expStr) {
30 super("[AutoGenException]:" + expStr);
31 }
32
33 public AutoGenException() {
34 super();
35 }
36 public AutoGenException(Exception e, String messsge){
37 super(e, messsge);
38 }
39 }