16 lines
298 B
PHP
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);
|
|
}
|
|
}
|