1 /******************************************************************************* 2 * Copyright (c) 2005, 2006 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.jbi4cics.exception; 9 10 /** 11 * 12 * @author <a href="mailto:rspazzoli@imolinfo.it">Raffaele Spazzoli</a> 13 * @author <a href="mailto:acannone@imolinfo.it">Amedeo Cannone</a> 14 */ 15 public class ConnectionException extends Jbi4cicsException { 16 17 18 /** 19 * Serial Version UID. 20 */ 21 private static final long serialVersionUID = -8836081596680996553L; 22 23 public ConnectionException(String message) { 24 super(message); 25 // TODO Auto-generated constructor stub 26 } 27 28 public ConnectionException(String message, Throwable cause) { 29 super(message, cause); 30 // TODO Auto-generated constructor stub 31 } 32 33 public ConnectionException(Throwable cause) { 34 super(cause); 35 // TODO Auto-generated constructor stub 36 } 37 38 /** 39 * A constructor with i18n support. 40 * 41 * @param message The message of the exception. 42 * @param args The <code>MessageFormat</code> arguments. 43 */ 44 public ConnectionException(String message, Object[] args) { 45 super(message, args); 46 } 47 48 /** 49 * A constructor with i18n support. 50 * 51 * @param message The message of the exception. 52 * @param args The <code>MessageFormat</code> arguments. 53 * @param cause The cause of the exception. 54 */ 55 public ConnectionException(String message, Object[] args, Throwable cause) { 56 super(message, args, cause); 57 } 58 59 }