shlink/module/Common/src/Exception/PreviewGenerationException.php
2017-10-12 10:13:20 +02:00

13 lines
294 B
PHP

<?php
declare(strict_types=1);
namespace Shlinkio\Shlink\Common\Exception;
class PreviewGenerationException extends RuntimeException
{
public static function fromImageError($error)
{
return new self(sprintf('Error generating a preview image with error: %s', $error));
}
}