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