rename main package name

Signed-off-by: Peter Siegmund <developer@mars3142.org>
This commit is contained in:
2024-10-30 12:09:51 +01:00
parent a184f4a038
commit 3c2eea0eb5
18 changed files with 30 additions and 30 deletions

View File

@@ -0,0 +1,9 @@
package dev.mars3142.fhq.timezone.exceptions;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@ResponseStatus(code = HttpStatus.NOT_FOUND)
public class NotFoundException extends RuntimeException {
}