1 package org.andromda.core.common;
2
3
4
5
6 public class XmlObjectFactoryException
7 extends RuntimeException
8 {
9 private static final long serialVersionUID = 34L;
10
11
12
13
14
15
16 public XmlObjectFactoryException(Throwable parent)
17 {
18 super(parent);
19 }
20
21
22
23
24
25
26 public XmlObjectFactoryException(String message)
27 {
28 super(message);
29 }
30
31
32
33
34
35
36
37 public XmlObjectFactoryException(
38 String message,
39 Throwable parent)
40 {
41 super(message, parent);
42 }
43 }