for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace BrightComponents\Services\Exceptions;
use Exception;
class ServiceHandlerMethodException extends Exception
{
public static function notFound($class)
return new static("Unable to locate handler for class, {$class}.");
}