Finally fixed build output

This commit is contained in:
Laurent
2025-12-10 09:12:12 +01:00
parent cf97429ad9
commit 968f05e37b
27 changed files with 90 additions and 105 deletions

View File

@@ -0,0 +1,9 @@
package httpServer.exceptions;
public class ClientAuthorisationException extends Exception {
public ClientAuthorisationException(String message) {
super(message);
}
}