blob: 0f6bb75178d62d39a1518c0c3c0707a67fdfd98a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php defined('SYSPATH') or die('No direct script access.');
/**
* Database exceptions.
*
* @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
|