Files
gallery3/system/libraries/Database_Exception.php
2009-11-24 19:20:36 -08:00

17 lines
446 B
PHP

<?php defined('SYSPATH') or die('No direct script access.');
/**
* Database exceptions.
*
* $Id: Database_Exception.php 4679 2009-11-10 01:45:52Z isaiah $
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class Database_Exception_Core extends Kohana_Exception {
// Database error code
protected $code = E_DATABASE_ERROR;
} // End Database_Exception