8b7bd455 |
1 | /** @file\r |
2 | PlatformPcdPreprocessException class.\r |
3 | \r |
4 | The class handle the exception throwed by PlatformPcdPreprocessAction class.\r |
5 | \r |
6 | Copyright (c) 2006, Intel Corporation\r |
7 | All rights reserved. This program and the accompanying materials\r |
8 | are licensed and made available under the terms and conditions of the BSD License\r |
9 | which accompanies this distribution. The full text of the license may be found at\r |
10 | http://opensource.org/licenses/bsd-license.php\r |
11 | \r |
12 | THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r |
13 | WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r |
14 | \r |
15 | **/\r |
16 | package org.tianocore.pcd.exception;\r |
17 | \r |
18 | public class PlatformPcdPreprocessException extends Exception {\r |
19 | /**\r |
20 | serial version ID\r |
21 | **/\r |
22 | private static final long serialVersionUID = 2858398552845888282L;\r |
23 | \r |
24 | /**\r |
25 | Constructure function\r |
26 | \r |
27 | @param expStr exception message string.\r |
28 | **/\r |
29 | public PlatformPcdPreprocessException(String expStr) {\r |
30 | super("\r\n[PlatformPcdPreprocess Failure] #############################\r\n" + expStr);\r |
31 | }\r |
32 | \r |
33 | public PlatformPcdPreprocessException() {\r |
34 | super();\r |
35 | }\r |
36 | }\r |