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 ClassGenerationException extends Jbi4cicsException{
16
17 /**
18 * Serial Version UID.
19 */
20 private static final long serialVersionUID = -8897213455820625102L;
21
22 public ClassGenerationException(String message) {
23 // TODO Auto-generated constructor stub
24 super(message);
25 }
26
27 public ClassGenerationException(String message, Throwable cause) {
28 // TODO Auto-generated constructor stub
29 super(message, cause);
30 }
31
32 public ClassGenerationException(Throwable cause) {
33 // TODO Auto-generated constructor stub
34 super(cause);
35 }
36
37 /**
38 * A constructor with i18n support.
39 *
40 * @param message The message of the exception.
41 * @param args The <code>MessageFormat</code> arguments.
42 */
43 public ClassGenerationException(String message, Object[] args) {
44 super(message, args);
45 }
46
47 /**
48 * A constructor with i18n support.
49 *
50 * @param message The message of the exception.
51 * @param args The <code>MessageFormat</code> arguments.
52 * @param cause The cause of the exception.
53 */
54 public ClassGenerationException(String message, Object[] args, Throwable cause) {
55 super(message, args, cause);
56 }
57
58 }