for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thunder\Serializard\Exception;
/**
* @author Tomasz Kowalczyk <[email protected]>
*/
final class ClassNotFoundException extends AbstractSerializardException
{
public static function fromClass($class)
return new self(sprintf('Given value %s is neither class nor interface name!', $class));
}