for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BinaryCube\CarrotMQ\Exception;
/**
* Class ClassNotFoundException
*/
class ClassNotFoundException extends Exception
{
* @return string the user-friendly name of this exception
public function getName(): string
return 'Class Not Found';
}