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 ParseException 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 ParseException(String message) { 29 super(message); 30 // TODO Auto-generated constructor stub 31 } 32 33 /** 34 * @param message The message 35 * @param cause The case 36 */ 37 public ParseException(String message, Throwable cause) { 38 super(message, cause); 39 // TODO Auto-generated constructor stub 40 } 41 42 /** 43 * @param cause The case 44 */ 45 public ParseException(Throwable cause) { 46 super(cause); 47 // TODO Auto-generated constructor stub 48 } 49 50 /** 51 * A constructor with i18n support. 52 * 53 * @param message The message of the exception. 54 * @param args The <code>MessageFormat</code> arguments. 55 */ 56 public ParseException(String message, Object[] args) { 57 super(message, args); 58 } 59 60 /** 61 * A constructor with i18n support. 62 * 63 * @param message The message of the exception. 64 * @param args The <code>MessageFormat</code> arguments. 65 * @param cause The cause of the exception. 66 */ 67 public ParseException(String message, Object[] args, Throwable cause) { 68 super(message, args, cause); 69 } 70 71 }