for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Exception for user already exist
*
* @package Ibonly\PotatoORM\DataAlreadyExistException
* @author Ibraheem ADENIYI <[email protected]>
* @license MIT <https://opensource.org/licenses/MIT>
*/
namespace Ibonly\PotatoORM;
use Exception;
class DataAlreadyExistException extends Exception
{
public function __construct()
parent::__construct("Data already exist in database");
}
* Get error message
* @return string
public function errorMessage()
return "Error: " . $this->getMessage();