| 
  |||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| DeploymentException.java | - | 0% | 0% | 0% | 
             | 
  ||||||||||||||
| 1 | 
       /*
 | 
|
| 2 | 
        * $Id: DeploymentException.java,v 1.1 2004/12/15 14:18:08 patforna Exp $
 | 
|
| 3 | 
        *
 | 
|
| 4 | 
        * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
 | 
|
| 5 | 
        * Berne University of Applied Sciences
 | 
|
| 6 | 
        * School of Engineering and Information Technology
 | 
|
| 7 | 
        * All rights reserved.
 | 
|
| 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 | 0 | 
   
        public DeploymentException(String message) {
   
 | 
| 22 | 0 | 
   
            super(message);
   
 | 
| 23 | 
      }  | 
|
| 24 | 
       | 
|
| 25 | 0 | 
   
        public DeploymentException(String message, Throwable cause) {
   
 | 
| 26 | 0 | 
   
            super(message, cause);
   
 | 
| 27 | 
      }  | 
|
| 28 | 
       | 
|
| 29 | 0 | 
   
        public DeploymentException(Throwable cause) {
   
 | 
| 30 | 0 | 
   
            super(cause);
   
 | 
| 31 | 
      }  | 
|
| 32 | 
      }  | 
  | 
||||||||||