rector/packages/FileFormatter/Exception/ParseIndentException.php

18 lines
362 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace Rector\FileFormatter\Exception;
use UnexpectedValueException;
final class ParseIndentException extends UnexpectedValueException
{
public static function fromString(string $string): self
{
$message = sprintf('The content "%s" could not be parsed', $string);
return new self($message);
}
}