/
jagepard
/
Rudra-Exception
Обзор
Документация
Войти
/
jagepard
/
Rudra-Exception
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/NotFoundException.php
20 строк
601 B
Jagepard
style: apply PSR-12 formatting to empty class body
03 июл 2026, 20:13
03 июл 2026, 20:13
ec15297
Код
Авторство
О чём код?
<?php declare(strict_types=1); /** * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at https://mozilla.org/MPL/2.0/. * * @author Korotkov Danila (Jagepard) <jagepard@yandex.ru> * @license https://mozilla.org/MPL/2.0/ MPL-2.0 */ namespace Rudra\Exceptions; /** * Custom exception class for handling "Not Found" errors. * This exception is typically thrown when a requested resource, service, or data is not found. */ class NotFoundException extends RudraException { }