mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-27 17:30:07 -07:00
16 lines
344 B
PHP
16 lines
344 B
PHP
<?php
|
|
|
|
namespace AppBundle\Exception;
|
|
|
|
use Throwable;
|
|
|
|
class RenderFailedException extends FileException
|
|
{
|
|
public function __construct($path, $message = '', $code = 0, Throwable $previous = null)
|
|
{
|
|
$message = sprintf('Error rendering "%s" file.', $path);
|
|
|
|
parent::__construct($path, $message, $code, $previous);
|
|
}
|
|
}
|