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;
use SerhiiMe\Typos\Keyboard\IKeyboard;
class WrongKeyboardException extends \Exception implements \Throwable
{
public function __construct(string $classname)
parent::__construct(sprintf('Keyboard "%s" not implements "%s" interface', $classname,IKeyboard::class), 1, null);
}