This repository has been archived on 2024-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Backend/src/main/java/cc/fascinated/backend/exception/impl/ResourceNotFoundException.java

10 lines
326 B
Java
Raw Normal View History

2024-04-23 01:15:24 +01:00
package cc.fascinated.backend.exception.impl;
2024-04-23 00:43:05 +01:00
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 { }