for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mxdiModule\Exception;
class CannotGetValue extends \RuntimeException
{
public static function of($name, \Exception $previous = null)
return new self(sprintf('Cannot get value of %s', $name), 0, $previous);
}