1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
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     * the serial version UID.
15     */
16    private static final long serialVersionUID = 1L;
17  
18    public SchemaGenerationException() {
19      // use defaults
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  }