]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/PcdTools/org/tianocore/pcd/exception/EntityException.java
ca258108550b08b98b876755e54e8b024dab13a7
[mirror_edk2.git] / Tools / Source / PcdTools / org / tianocore / pcd / exception / EntityException.java
1 /** @file
2 EntityException 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.pcd.exception;
17
18 /**
19 The class handle the exception throwed by entity class.
20 **/
21 public class EntityException extends Exception {
22 static final long serialVersionUID = -8034897190740066939L;
23 /**
24 Constructure function
25
26 @param expStr exception message string.
27 **/
28 public EntityException(String expStr) {
29 super("[PCD EntityException]:" + expStr);
30 }
31 }