1   /*
2    * SPDX-FileCopyrightText: none
3    * SPDX-License-Identifier: CC0-1.0
4    */
5   
6   package gov.nist.secauto.oscal.lib.profile.resolver.selection;
7   
8   public class ImportCycleException
9       extends Exception {
10  
11    /**
12     * the serial version UUID.
13     */
14    private static final long serialVersionUID = 1L;
15  
16    public ImportCycleException() {
17      // no message or cause
18    }
19  
20    public ImportCycleException(String message) {
21      super(message);
22    }
23  
24    public ImportCycleException(Throwable cause) {
25      super(cause);
26    }
27  
28    public ImportCycleException(String message, Throwable cause) {
29      super(message, cause);
30    }
31  
32    public ImportCycleException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
33      super(message, cause, enableSuppression, writableStackTrace);
34    }
35  }