mirror of
https://github.com/shlinkio/shlink.git
synced 2026-03-03 13:43:13 +08:00
11 lines
268 B
PHP
11 lines
268 B
PHP
<?php
|
|
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));
|
|
}
|
|
}
|