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 EJBWSDLGenerationException extends Jbi4EjbException {
17  
18      /**
19       * Instantiates a new EJBWSDL generation exception.
20       * 
21       * @param th the Exception cause
22       */
23      public EJBWSDLGenerationException(Throwable th) {
24          super(th);
25      }
26      
27      /**
28       * Instantiates a new EJBWSDL generation exception.
29       * 
30       * @param msg the Exception message
31       */
32      public EJBWSDLGenerationException(String msg) {
33          super(msg);
34      }
35      
36      /**
37       * Instantiates a new EJBWSDL generation exception.
38       * 
39       * @param msg the Exception message
40       */
41      public EJBWSDLGenerationException(String msg,Throwable th) {
42          super(msg,th);
43      }    
44  }