]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/Common/org/tianocore/common/exception/EdkException.java
Changed spelling to manifest
[mirror_edk2.git] / Tools / Source / Common / org / tianocore / common / exception / EdkException.java
CommitLineData
652f4bd8 1/*++\r
2\r
3Copyright (c) 2006, Intel Corporation\r
4All rights reserved. This program and the accompanying materials\r
5are licensed and made available under the terms and conditions of the BSD License\r
6which accompanies this distribution. The full text of the license may be found at\r
7http://opensource.org/licenses/bsd-license.php\r
8\r
9THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
10WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
11\r
12Module Name:\r
13 EdkException.java\r
14\r
15Abstract:\r
16\r
17--*/\r
ff225cbb 18\r
19package org.tianocore.common.exception;\r
652f4bd8 20\r
21public class EdkException extends Exception {\r
265869ee 22 static final long serialVersionUID = -8494188017252114029L;\r
c8df018e 23\r
652f4bd8 24 public static boolean isPrintStack = false;\r
25\r
26 public EdkException(String message) {\r
27 super("[EdkException]:" + message);\r
28 }\r
29\r
30 public EdkException(String message, boolean traceStack) {\r
31 super(message);\r
ff225cbb 32\r
652f4bd8 33 }\r
ff225cbb 34\r
652f4bd8 35 public EdkException(){\r
36 super();\r
37 }\r
ff225cbb 38\r
652f4bd8 39 public EdkException(Exception e, String message){\r
40 super("[EdkException]:" + message);\r
41 if (isPrintStack){\r
42 this.setStackTrace(e.getStackTrace());\r
43 }\r
44 e.printStackTrace();\r
45 }\r
46 public static void setIsprintStack (boolean flag){\r
47 isPrintStack = flag;\r
48 }\r
49}\r