]> git.proxmox.com Git - mirror_edk2.git/blame - Tools/Source/PcdTools/org/tianocore/pcd/exception/UIException.java
Because Pcd entity, exception and some action package are shared by Building tools...
[mirror_edk2.git] / Tools / Source / PcdTools / org / tianocore / pcd / exception / UIException.java
CommitLineData
878ddf1f 1/** @file\r
2 UIException class.\r
3\r
4 The class handle the exception throwed by UI action class.\r
5 \r
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
11 \r
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
15**/ \r
d14ebb43 16package org.tianocore.pcd.exception;\r
878ddf1f 17\r
18/**\r
19 The class handle the exception throwed by UI action class.\r
20**/\r
21public class UIException extends Exception {\r
22 static final long serialVersionUID = -7034897190740066930L;\r
23 /**\r
24 Constructure function\r
25 \r
26 @param reason exception message string.\r
27 **/\r
28 public UIException(String reason) {\r
29 super(reason);\r
30 }\r
31}\r