Skip to content

Commit

Permalink
Fixed last code smells from main branch.
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Labordus <[email protected]>
  • Loading branch information
Dennis Labordus committed Jul 14, 2022
1 parent 3ccec66 commit 952636d
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
// SPDX-License-Identifier: Apache-2.0
package org.lfenergy.compas.scl.validator.exception;

import org.lfenergy.compas.core.commons.exception.CompasException;

import static org.lfenergy.compas.scl.validator.exception.SclValidatorErrorCode.NSDOC_FILE_NOT_FOUND;

public class NsdocFileNotFoundException extends SclValidatorException {
public class NsdocFileNotFoundException extends CompasException {
public NsdocFileNotFoundException(String message) {
super(NSDOC_FILE_NOT_FOUND, message);
}
Expand Down

0 comments on commit 952636d

Please sign in to comment.