Liam
fa10cf2019
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m10s
11 lines
317 B
Java
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 {
|
|
}
|