for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Nyholm\Dsn\Exception;
/**
* Thrown when you cannot use functions in a DSN.
*
* @author Tobias Nyholm <[email protected]>
*/
class FunctionsNotAllowedException extends InvalidDsnException
{
public function __construct(string $dsn)
parent::__construct($dsn, 'Function are not allowed in this DSN');
}