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