2024-04-13 20:53:31 +01:00
|
|
|
package xyz.mcutils.backend.exception.impl;
|
2024-04-10 07:43:38 +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 { }
|