9 lines
335 B
Java
9 lines
335 B
Java
package com.example.onomatopoeiaback.exceptions;
|
|
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.web.bind.annotation.ResponseStatus;
|
|
|
|
@ResponseStatus(code = HttpStatus.NOT_FOUND, reason = "Запрашиваемые данные не найдены")
|
|
public class NotFoundException extends RuntimeException {
|
|
}
|