for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Serhii Nekhaienko <[email protected]>
* @license MIT
* @copyright Serhii Nekhaienko (c) 2019
* @version 1.0
*/
namespace SerhiiMe\Typos\Exception;
class StorageNotFoundException extends \Exception implements \Throwable
{
public function __construct(string $classname)
parent::__construct(sprintf('Storage "%s" not Found', $classname), 1, null);
}