1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-27 17:30:07 -07:00
PrintABrick/src/AppBundle/Exception/RenderFailedException.php
David Hübner 74ccc71ac5 Add StlRendererService
Add service for rendering stl files with use of stl2pov & pov-ray
2017-04-18 18:28:40 +02:00

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);
}
}