for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Skrill\Exception;
use Exception;
/**
* Class InvalidProductDescriptionException.
*/
final class InvalidDescriptionException extends Exception implements SkrillException
{
* @return InvalidDescriptionException
public static function emptySubject(): self
return new self('Description subject should not be blank.');
}
public static function emptyText(): self
return new self('Description text should not be blank.');