1
2
3
4
5
6
7
8
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 }