]> git.proxmox.com Git - mirror_edk2.git/blob - Tools/Source/PcdTools/org/tianocore/pcd/exception/UIException.java
Refine the code for PCD tools.
[mirror_edk2.git] / Tools / Source / PcdTools / org / tianocore / pcd / exception / UIException.java
1 /** @file
2 UIException class.
3
4 The class handle the exception throwed by UI action 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 UI action class.
20 **/
21 public class UIException extends Exception {
22 static final long serialVersionUID = -7034897190740066930L;
23 /**
24 Constructure function
25
26 @param reason exception message string.
27 **/
28 public UIException(String reason) {
29 super(reason);
30 }
31 }