for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @package A simple ORM that performs basic CRUD operations
* @author Surajudeen AKANDE <[email protected]>
* @license MIT <https://opensource.org/licenses/MIT>
* @link http://www.github.com/andela-sakande
* */
namespace Sirolad\Exceptions;
use PDOException;
* Exception class for Inexistent Table
class TableDoesNotExistException extends PDOException
{
* constructor class
public function __construct()
parent::__construct('This table does not exist.');
}
* @return string
public function message()
return 'Fatal Error: ' . $this->getMessage();