| Current Path : /home/zada/public_html/vendor/spatie/browsershot/src/Exceptions/ |
| Current File : /home/zada/public_html/vendor/spatie/browsershot/src/Exceptions/HtmlIsNotAllowedToContainFile.php |
<?php
namespace Spatie\Browsershot\Exceptions;
use Exception;
class HtmlIsNotAllowedToContainFile extends Exception
{
public static function make(): static
{
return new static('The specified HTML contains `file://` or `file:/`. This is not allowed.');
}
}