for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Jh\DataImportMagento\Exception;
use Ddeboer\DataImport\Exception\ExceptionInterface;
use Exception;
/**
* Class AttributeNotExistException
* @package Jh\DataImportMagento\Exception
* @author Aydin Hassan <[email protected]>
*/
class AttributeNotExistException extends Exception implements ExceptionInterface
{
* @param string $attributeCode
public function __construct($attributeCode)
$message = sprintf('Attribute with code: "%s" does not exist', $attributeCode);
parent::__construct($message);
}