/
jagepard
/
Rudra-Exception
Обзор
Документация
Войти
/
jagepard
/
Rudra-Exception
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/RuntimeException.php
20 строк
582 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; /** * For errors that occur during execution, and depend on external factors * (e.g. file not found, no write permissions, DB error, etc.) */ class RuntimeException extends RudraException { }