mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-17 21:00:09 -07:00
17 lines
400 B
PHP
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);
|
|
}
|
|
}
|