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