for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Yolk - Gamer Network's PHP Framework.
*
* Copyright (c) 2013 Gamer Network Ltd.
* Distributed under the MIT License, a copy of which is available in the
* LICENSE file that was bundled with this package, or online at:
* https://github.com/gamernetwork/yolk
*/
namespace yolk\database\exceptions;
/**
* Thrown if a database configuration is invalid.
class NotConnectedException extends DatabaseException {
public function __construct( $message = 'The database is not connected', $code = 0, \Exception $previous = null ) {
parent::__construct($message, $code, $previous);
}
// EOF