1 /*
2 * Copyright (c) 2005-2007 Creative Sphere Limited.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
7 *
8 * Contributors:
9 *
10 * Creative Sphere - initial API and implementation
11 *
12 */
13 package org.abstracthorizon.extend.server.deployment;
14
15 /**
16 * Deployment exception
17 *
18 * @author Daniel Sendula
19 */
20 public class DeploymentException extends RuntimeException {
21
22 /**
23 * Constructor
24 */
25 public DeploymentException() {
26 }
27
28 /**
29 * Constructor
30 *
31 * @param msg message
32 */
33 public DeploymentException(String msg) {
34 super(msg);
35 }
36
37 /**
38 * Constructor
39 *
40 * @param cause cuase
41 */
42 public DeploymentException(Throwable cause) {
43 super(cause);
44 }
45
46 /**
47 * Constructor
48 *
49 * @param msg message
50 * @param cause cause
51 */
52 public DeploymentException(String msg, Throwable cause) {
53 super(msg, cause);
54 }
55 }