/
Harbinger21
/
StudentRegistration
Обзор
Документация
Войти
/
Harbinger21
/
StudentRegistration
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/main/java/ru/studentRegistration/exception/ResourceNotFoundException.java
15 строк
467 B
anton
add tests
18 май 2024, 18:27
18 май 2024, 18:27
3a64db4
Код
Авторство
О чём код?
package ru.studentRegistration.exception; import org.springframework.http.HttpStatus; import org.springframework.web.bind.annotation.ResponseStatus; /** * Исключение пробрасывается в случае если данные не найдены */ @ResponseStatus(value = HttpStatus.NOT_FOUND) public class ResourceNotFoundException extends RuntimeException{ public ResourceNotFoundException(String message){ super(message); } }