Files
shopit-back/app/Domains/Purchase/Exceptions/PurchaseExpiredException.php

14 lines
237 B
PHP

<?php
namespace App\Domains\Purchase\Exceptions;
use RuntimeException;
class PurchaseExpiredException extends RuntimeException
{
public function __construct()
{
parent::__construct(__('api.purchase.expired'));
}
}