codes.txt

This commit is contained in:
Mekan1206
2026-06-03 21:24:00 +05:00
parent c74330cfaf
commit fa3202288f
9 changed files with 341 additions and 17 deletions

View File

@@ -0,0 +1,15 @@
<?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);
}
}