for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace SyliusCart\Domain\Exception;
/**
* @author Arkadiusz Krakowiak <[email protected]>
*/
final class CartItemNotFoundException extends \DomainException
{
* @param string $message
* @param \Exception|null $previousException
public function __construct($message = 'Cart item not found.', \Exception $previousException = null)
parent::__construct($message, 0, $previousException);
}