for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Thruster\Component\DataMapper\Exception;
/**
* Class DataMapperNotFoundException
*
* @package Thruster\Component\DataMapper\Exception
* @author Aurimas Niekis <[email protected]>
*/
class DataMapperNotFoundException extends \Exception
{
* @param string $name
public function __construct($name)
$message = sprintf(
'DataMapper "%s" not found',
$name
);
parent::__construct($message);
}