View Javadoc

1   /*
2    * ******** (c) Copyright 2004-2005 Digital Business Ecosystem Consortium ****
3    *
4    * File Name:              $Id: DeploymentException.java,v 1.2 2006/04/06 14:30:37 mckitterick Exp $
5    * Author:                 $Author: mckitterick $
6    * Date last modification: $Date: 2006/04/06 14:30:37 $
7    * Author:                 davidx.mckitterick@intel.com
8    * Version:                $Revision: 1.2 $
9    *
10   * ***************************************************************************
11   */
12  
13  package org.dbe.studio.tools.exporter;
14  
15  /***
16   * This class implements a deployment exception
17   *
18   * @author David McKitterick
19   */
20  public class DeploymentException extends Exception
21  {
22      private static final long serialVersionUID = 1L;
23  
24      /***
25       * Constrictor 1
26       */
27      public DeploymentException() {
28          super();
29      }
30  
31      /***
32       * Constructor 2
33       *
34       * @param message the exception message
35       */
36      public DeploymentException(final String message) {
37          super(message);
38      }
39  }