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