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