for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Syntax\SteamApi\Exceptions;
class ClassNotFoundException extends \Exception
{
public function __construct($class)
parent::__construct(sprintf('The called class [' . $class . '] does not exist.'));
}