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