View Javadoc

1   /*******************************************************************************
2    *  Copyright (c) 2005, 2006, 2007 Imola Informatica.
3    *  All rights reserved. This program and the accompanying materials
4    *  are made available under the terms of the LGPL License v2.1
5    *  which accompanies this distribution, and is available at
6    *  http://www.gnu.org/licenses/lgpl.html
7    *******************************************************************************/
8   package it.imolinfo.jbi4ejb.exception;
9   
10  
11  /**
12   * Deploy exception for EJB BC.
13   * 
14   * @author marco
15   */
16  @SuppressWarnings("serial")
17  public class EJBDeployException extends Jbi4EjbException {
18      
19      /**
20       * Instantiates a new EJB deploy exception.
21       * 
22       * @param th the cause
23       */
24      public EJBDeployException(Throwable th) {
25          super(th);
26      }
27      
28      
29      /**
30       * Instantiates a new EJB deploy exception.
31       * 
32       * @param msg the message
33       */
34      public EJBDeployException(String msg) {
35          super(msg);
36      }
37      
38  
39      /**
40       * A constructor.
41       *
42       * @param    message        The message of the exception.
43       * @param    cause        The cause of the exception.
44       */
45      public EJBDeployException(String message, Throwable cause) {
46          super(message, cause);
47      }
48  }