14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
|
|
namespace App\Domains\Catalog\Exceptions;
|
|
|
|
use RuntimeException;
|
|
|
|
class StockReservationExpiredException extends RuntimeException
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(__('api.cart.reservation_expired'));
|
|
}
|
|
}
|