Remove useless "final" keywords

This commit is contained in:
Florian THIERRY
2023-12-01 15:04:53 +01:00
parent 367676f6d8
commit 756953fbf9
7 changed files with 9 additions and 9 deletions

View File

@@ -1,7 +1,7 @@
package org.sportshub.domain.exception;
public abstract class FunctionnalException extends RuntimeException {
public FunctionnalException(final String message) {
public FunctionnalException(String message) {
super(message);
}
}