PHP Classes

File: MySQL2PDOException.php

Recommend this page to a friend!
  Classes of Aziz S. Hussain   mysql_* functions using PDO   MySQL2PDOException.php   Download  
File: MySQL2PDOException.php
Role: Class source
Content type: text/plain
Description: Class source
Class: mysql_* functions using PDO
Access MySQL databases using PDO wrapper functions
Author: By
Last change:
Date: 5 years ago
Size: 746 bytes
 

Contents

Class file image Download
<?php
/**
 * This file is an abstract of the Exception handler
 * in the event that a connection is invalid it will
 * be thrown within out application.
 *
 * @author Matthew Baggett
 * @email matthew@baggett.me
 * @copyright GPL license
 * @license http://www.gnu.org/copyleft/gpl.html
 * @link https://github.com/matthewbaggett/MySQL2PDO
 */

/**
 * MySQL2PDOException
 *
 * Throw exception handler. Place custom Exception logic here
 *
 * @author Matthew Baggett
 * @email matthew@baggett.me
 * @copyright GPL license
 * @license http://www.gnu.org/copyleft/gpl.html
 * @link https://github.com/matthewbaggett/MySQL2PDO
 * @extends Exception
 */
class MySQL2PDOException extends Exception {}