for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Pyjac\ORM\Exception;
class ModelNotFoundException extends \Exception
{
public function __construct($id)
parent::__construct('The requested Model with '.$id.' does not exist');
}