1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-17 21:00:09 -07:00
PrintABrick/src/AppBundle/Exception/RelationMapper/ResourceNotFoundException.php
2017-05-05 21:07:40 +02:00

17 lines
400 B
PHP

<?php
namespace AppBundle\Exception\RelationMapper;
use AppBundle\Exception\FileException;
use Throwable;
class ResourceNotFoundException extends FileException
{
public function __construct($path, $message = '', $code = 0, Throwable $previous = null)
{
$message = sprintf('Resource "%s" not found.', $path);
parent::__construct($path, $message, $code, $previous);
}
}