]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/PcdTools/org/tianocore/pcd/exception/PlatformPcdPreprocessException.java
Fixed grammar in messages.
[mirror_edk2.git] / Tools / Source / PcdTools / org / tianocore / pcd / exception / PlatformPcdPreprocessException.java
1 /** @file
2 PlatformPcdPreprocessException class.
3
4 The class handle the exception throwed by PlatformPcdPreprocessAction 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.pcd.exception;
17
18 public class PlatformPcdPreprocessException extends Exception {
19 /**
20 serial version ID
21 **/
22 private static final long serialVersionUID = 2858398552845888282L;
23
24 /**
25 Constructure function
26
27 @param expStr exception message string.
28 **/
29 public PlatformPcdPreprocessException(String expStr) {
30 super("\r\n[PlatformPcdPreprocess Failure] #############################\r\n" + expStr);
31 }
32
33 public PlatformPcdPreprocessException() {
34 super();
35 }
36 }