for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Apie\TypeJuggling\Exceptions;
use Apie\Core\Exceptions\ApieException;
class CanNotCallFromNativeWithAbstractClassOrInterface extends ApieException
{
public function __construct(string $className)
parent::__construct(500, sprintf("The class %s is abstract or an interface, so can not be instantiated", $className));
}