for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Infrastructure\Database\Exception;
class PersistenceRecordNotFoundException extends PersistenceException
{
public function __construct(string $tableName)
parent::__construct('The requested ' . $tableName . ' does not exist.');
}