1 package org.andromda.core.common;
2
3
4 /***
5 * Any unchecked exception that will be thrown during execution of the XmlObjectFactory.
6 */
7 public class XmlObjectFactoryException
8 extends RuntimeException
9 {
10 /***
11 * Constructs an instance of XmlObjectFactoryException.
12 *
13 * @param parent
14 */
15 public XmlObjectFactoryException(Throwable parent)
16 {
17 super(parent);
18 }
19
20 /***
21 * Constructs an instance of XmlObjectFactoryException.
22 *
23 * @param message
24 */
25 public XmlObjectFactoryException(String message)
26 {
27 super(message);
28 }
29
30 /***
31 * Constructs an instance of XmlObjectFactoryException.
32 *
33 * @param message
34 * @param parent
35 */
36 public XmlObjectFactoryException(
37 String message,
38 Throwable parent)
39 {
40 super(message, parent);
41 }
42 }