12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Exception;
- use Magento\Framework\Phrase;
- /**
- * @api
- * @since 100.0.2
- */
- class AlreadyExistsException extends LocalizedException
- {
- /**
- * @param Phrase $phrase
- * @param \Exception $cause
- * @param int $code
- */
- public function __construct(Phrase $phrase = null, \Exception $cause = null, $code = 0)
- {
- if ($phrase === null) {
- $phrase = new Phrase('Unique constraint violation found');
- }
- parent::__construct($phrase, $cause, $code);
- }
- }
|