1
2
3
4
5
6
7
8
9 package bexee.admin;
10
11 /***
12 * This class is used to indicate that something went wrong when trying to
13 * deploy a BPEL process to the bexee and Axis engines.
14 *
15 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:08 $
16 * @author Patric Fornasier
17 * @author Pawel Kowalski
18 */
19 public class DeploymentException extends Exception {
20
21 public DeploymentException(String message) {
22 super(message);
23 }
24
25 public DeploymentException(String message, Throwable cause) {
26 super(message, cause);
27 }
28
29 public DeploymentException(Throwable cause) {
30 super(cause);
31 }
32 }