Files
daragt-coupon/app/Exceptions/CouponPoolExhaustedException.php
Mekan1206 fa3202288f codes.txt
2026-06-03 21:24:00 +05:00

16 lines
298 B
PHP

<?php
namespace App\Exceptions;
use RuntimeException;
class CouponPoolExhaustedException extends RuntimeException
{
public const MESSAGE = 'Aksiýa tamamlandy. Gyzyklanmagyňyz üçin sag boluň.';
public function __construct()
{
parent::__construct(self::MESSAGE);
}
}