for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimpleSAML\XMLSecurity\Exception;
use Throwable;
/**
* Class FileNotFoundException
*
* This exception is thrown when a file cannot be found on the file system
* @package simplesamlphp/xml-security
*/
class FileNotFoundException extends InvalidArgumentException
{
* @param string|null $message
public function __construct(?string $message = null)
parent::__construct($message ?: 'File not found.');
}