for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Netgen\HtmlPdfApi\Exception;
use Exception;
class FileNotFoundException extends Exception {
/**
* Constructor
*
* @param string $message Message of the exception
*/
public function __construct ($message)
{
parent::__construct($message);
}