N98\Magento\Command\Developer\Module\Rewrite\ClassExistsChecker::autoloadTerminator PHP Method

autoloadTerminator() public method

Method is called as last auto-loader (if all others have failed), so the class does not exists (is not resolve-able)
public autoloadTerminator ( $notFoundClass )
$notFoundClass
    public function autoloadTerminator($notFoundClass)
    {
        $className = $this->className;
        if (null === ($context = $this->context)) {
            //@codeCoverageIgnoreStart
            // sanity check, should never come here
            throw new BadMethodCallException('No autoloading in place');
            // @codeCoverageIgnoreStop
        }
        if ($notFoundClass === $className) {
            return;
        }
        $context->stack[] = array($notFoundClass, $className);
        $context->lastException = new CanNotAutoloadCollaboratorClassException(sprintf('%s for %s', $notFoundClass, $className));
        throw $context->lastException;
    }