1 package com.sourceforge.jpatterns.core.configuration.exceptions;
2
3 import com.sourceforge.jpatterns.core.JPException;
4
5 /**
6 * This exception appear in the cases smth. wrong with initialization of JPatterns framework took place (invalid value of some properties
7 * defined implementation, absence of the XML configuration file with the "factories" for the internal uses etc).
8 *
9 * $Author:: zmicer $<br/>
10 * $Rev:: 67 $<br/> * $Date:: 2007-08-28 21:37:07 #$<br/>
11 * $Date:: 2007-08-28 21:37:07 #$<br/>
12 */
13 public class JPInitializationException extends JPException
14 {
15 /**
16 * The default public constructor
17 */
18 public JPInitializationException()
19 {
20 super();
21 }
22
23 /**
24 * One of the public constructor
25 *
26 * @param message the message param
27 */
28 public JPInitializationException(String message)
29 {
30 super(message);
31 }
32
33 /**
34 * One of the public constructors
35 *
36 * @param message message param
37 * @param cause param
38 */
39 public JPInitializationException(String message, Throwable cause)
40 {
41 super(message, cause);
42 }
43
44 /**
45 * One of the forms of the public construtor
46 *
47 * @param cause the throwable param
48 */
49 public JPInitializationException(Throwable cause)
50 {
51 super(cause);
52 }
53 }