for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Temitope Olotin <[email protected]>
* @license <https://opensource.org/license/MIT> MIT
*/
namespace Laztopaz\PotatoORM;
use Exception;
class TableFieldUndefinedException extends Exception
{
public static function create($unExpectedFields, $message)
$fields = implode(', ', $unExpectedFields);
return new static($fields.' '.$message);
}