1 /**************************************************************************** 2 * Copyright (c) 2005, 2006, 2007, 2008, 2009 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.jbi4corba.exception; 9 10 public class Jbi4CorbaDeployException extends Jbi4CorbaException { 11 12 /** serialVersionUID */ 13 private static final long serialVersionUID = 7910963404252743831L; 14 15 /** 16 * A constructor. 17 * 18 * @param message The message of the exception. 19 */ 20 public Jbi4CorbaDeployException(final String message) { 21 super(message); 22 } 23 24 /** 25 * A constructor. 26 * 27 * @param message The message of the exception. 28 * @param cause The cause of the exception. 29 */ 30 public Jbi4CorbaDeployException( 31 final String message, final Throwable cause) { 32 super(message, cause); 33 } 34 35 /** 36 * A constructor. 37 * 38 * @param cause The cause of the exception. 39 */ 40 public Jbi4CorbaDeployException(final Throwable cause) { 41 super(cause); 42 } 43 44 /** 45 * XXXJavadoc. 46 * 47 * @param format The format 48 * @param args The argoments 49 * @param cause The cause 50 */ 51 public Jbi4CorbaDeployException( 52 final String format, final Object[] args, final Throwable cause) { 53 super(format, args, cause); 54 } 55 56 }