/
itp_practice
/
itp_backend
Обзор
Документация
Войти
/
itp_practice
/
itp_backend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
app/Exceptions/TelegramDataAlreadyExistsException.php
16 строк
324 B
vivanenko
profile edit
29 май 2025, 19:57
29 май 2025, 19:57
2ec716b
Код
Авторство
О чём код?
<?php namespace App\Exceptions; use Exception; /** * Telegram Data Already Exists Exception * * Thrown when attempting to update to Telegram data that already exists */ class TelegramDataAlreadyExistsException extends Exception { protected $message = 'Telegram data already exists'; protected $code = 409; }