blob: 4a9cd83e496bf501b75fc8fde0082d6dcb8ce9e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?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
|