14 lines
237 B
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'));
|
|
}
|
|
}
|