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