laravel-shop/src/Exceptions/CartDatesRequiredException.php

14 lines
289 B
PHP
Raw Normal View History

2025-12-19 13:26:57 +00:00
<?php
namespace Blax\Shop\Exceptions;
use Exception;
class CartDatesRequiredException extends Exception
{
public function __construct(string $message = "Both 'from' and 'until' dates must be provided together, or both omitted.")
{
parent::__construct($message);
}
}