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 Jbi4EjbDeployException extends Jbi4EjbException {
18      
19      /**
20       * Instantiates a new EJB deploy exception.
21       * 
22       * @param th the cause
23       */
24      public Jbi4EjbDeployException(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 Jbi4EjbDeployException(String msg) {
35          super(msg);
36      }
37  }