1   
2   
3   
4   
5   
6   package gov.nist.secauto.oscal.lib.profile.resolver.selection;
7   
8   public class ImportCycleException
9       extends Exception {
10  
11    
12  
13  
14    private static final long serialVersionUID = 1L;
15  
16    public ImportCycleException() {
17      
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  }