14 lines
271 B
PHP
14 lines
271 B
PHP
<?php
|
|
|
|
namespace Image\PerceptualHash\Exception;
|
|
|
|
use Exception;
|
|
|
|
class FileNotFoundException extends Exception
|
|
{
|
|
public function __construct($message = "", $code = 0, Exception $previous = null)
|
|
{
|
|
parent::__construct($message, $code, $previous);
|
|
}
|
|
}
|