1
2
3
4
5
6 package gov.nist.secauto.metaschema.schemagen;
7
8 import edu.umd.cs.findbugs.annotations.NonNull;
9
10 public class SchemaGenerationException
11 extends IllegalStateException {
12
13
14
15
16 private static final long serialVersionUID = 1L;
17
18 public SchemaGenerationException() {
19
20 }
21
22 public SchemaGenerationException(String message, @NonNull Throwable cause) {
23 super(message, cause);
24 }
25
26 public SchemaGenerationException(String message) {
27 super(message);
28 }
29
30 public SchemaGenerationException(@NonNull Throwable cause) {
31 super(cause);
32 }
33
34 }