for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EDouna\LaravelDBBackup\Exceptions;
use Exception;
class DatabaseDriverNotSupportedException extends Exception
{
public static function message($selectedDriver)
return new static(sprintf('The current driver, %s, is not (yet) supported by the tool.', $selectedDriver));
}