Bat/src/main/java/cc/fascinated/bat/exception/ResourceNotFoundException.java
Liam fa10cf2019
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m10s
add spotify feature
2024-06-28 03:01:21 +01:00

11 lines
317 B
Java

package cc.fascinated.bat.exception;
import lombok.experimental.StandardException;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.ResponseStatus;
@StandardException
@ResponseStatus(HttpStatus.NOT_FOUND)
public class ResourceNotFoundException extends RuntimeException {
}