878ddf1f |
1 | /** @file\r |
2 | BuildActionException class.\r |
3 | \r |
4 | BuildAction Exception deals with all build action exceptions.\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 |
d14ebb43 |
16 | package org.tianocore.pcd.exception;\r |
878ddf1f |
17 | \r |
18 | import org.apache.tools.ant.BuildException;\r |
19 | \r |
20 | /**\r |
21 | BuildAction Exception deals with all build action exceptions.\r |
22 | **/\r |
23 | public class BuildActionException extends BuildException {\r |
24 | static final long serialVersionUID = -7034897190740066939L;\r |
25 | /**\r |
26 | Constructure function\r |
27 | \r |
28 | @param reason exception message string.\r |
29 | **/\r |
30 | public BuildActionException(String reason) {\r |
31 | super(reason);\r |
32 | }\r |
33 | }\r |