We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ccec66 commit 952636dCopy full SHA for 952636d
validator/src/main/java/org/lfenergy/compas/scl/validator/exception/NsdocFileNotFoundException.java
@@ -3,9 +3,11 @@
3
// SPDX-License-Identifier: Apache-2.0
4
package org.lfenergy.compas.scl.validator.exception;
5
6
+import org.lfenergy.compas.core.commons.exception.CompasException;
7
+
8
import static org.lfenergy.compas.scl.validator.exception.SclValidatorErrorCode.NSDOC_FILE_NOT_FOUND;
9
-public class NsdocFileNotFoundException extends SclValidatorException {
10
+public class NsdocFileNotFoundException extends CompasException {
11
public NsdocFileNotFoundException(String message) {
12
super(NSDOC_FILE_NOT_FOUND, message);
13
}
0 commit comments