10 lines
261 B
Java
10 lines
261 B
Java
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 {
|
|
|
|
}
|