Updated Sonarqube findings

This commit is contained in:
2022-06-29 10:41:37 -04:00
parent f73c7830c5
commit ee300f3da3
8 changed files with 530 additions and 598 deletions

View File

@@ -20,4 +20,7 @@ public class InvalidCoordinatesException extends RuntimeException{
public InvalidCoordinatesException(String message, Throwable throwable){
super(message, throwable);
}
public InvalidCoordinatesException(int givenElements, int neededElements){
super("Invalid number of elements " + givenElements + " must be at most " + neededElements);
}
}