KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > openccm > descriptor > componentassembly > ccm > deployer > base > FatalDeploymentException


1 /*====================================================================
2
3 OpenCCM: The Open CORBA Component Model Platform
4 Copyright (C) 2000-2004 INRIA - USTL - LIFL - GOAL
5 Contact: openccm@objectweb.org
6
7 This library is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Lesser General Public
9 License as published by the Free Software Foundation; either
10 version 2.1 of the License, or any later version.
11
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public
18 License along with this library; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
20 USA
21
22 Initial developer(s): Briclet Frédéric.
23 Contributor(s): ______________________________________.
24
25 ====================================================================*/

26 package org.objectweb.openccm.descriptor.componentassembly.ccm.deployer.base;
27
28 /**
29  * This Exception is thrown to signal that a fatal error has occured during
30  * deployment
31  *
32  * @author <a HREF="mailto:briclet@lifl.fr">Frederic Briclet</a>
33  *
34  * @version 0.1
35  */

36 public class FatalDeploymentException
37     extends DeployerExceptionWrapper
38 {
39     // ==================================================================
40
//
41
// Internal state.
42
//
43
// ==================================================================
44
private DeployerContext deployer;
45     // ==================================================================
46
//
47
// Constructors.
48
//
49
// ==================================================================
50

51     /**
52      * Basic constructor taking in parameter the initial exception
53      * which make failed the deployment.
54      */

55     public
56     FatalDeploymentException(Exception JavaDoc e)
57     {
58         super(e, "Fatal error occur during the deployment :\n" + e.getMessage());
59     }
60     
61     /**
62      * Basic constructor taking in parameter the initial exception
63      * which make failed the deployment and an explaination.
64      */

65     public FatalDeploymentException(Exception JavaDoc e, String JavaDoc message)
66     {
67         super(e,"Fatal error occur during the deployment \n" + message + ":\n");
68     }
69     
70     /**
71      * Basic constructor taking in parameter the initial exception
72      * which make failed the deployment and an explaination.
73      */

74     public FatalDeploymentException(DeployerContext dc ,Exception JavaDoc e, String JavaDoc message)
75     {
76         super(e,"Fatal error occur during the deployment \n" + message + ":\n");
77         this.deployer=dc;
78     }
79     // ==================================================================
80
//
81
// Internal methods.
82
//
83
// ==================================================================
84

85     // ==================================================================
86
//
87
// Public methods
88
//
89
// ==================================================================
90
public String JavaDoc getMessage()
91     {
92         if(deployer==null)
93             return super.getMessage();
94         try{
95             return super.getMessage()+"\n Check your CAD file it must contains a error\n"
96                                      +deployer.getStringifiedDeployerDescription();
97         }
98         catch(Exception JavaDoc e){
99             return super.getMessage()+"\n Check your CAD file it must contains a error";
100         }
101
102     }
103
104 }
105
Popular Tags