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   * Exception for WSDL generation from EJB remote interface.
12   * 
13   * @author marco
14   */
15  @SuppressWarnings("serial")
16  public class EJBInvokeException extends Jbi4EjbException {
17  
18      /**
19       * Instantiates a new EJB invoke exception.
20       * 
21       * @param th the exception cause
22       */
23      public EJBInvokeException(Throwable th) {
24          super(th);
25      }
26  
27      /**
28       * Instantiates a new EJB invoke exception.
29       * 
30       * @param msg the exception message
31       */
32      public EJBInvokeException(String msg) {
33          super(msg);
34      }
35  }