This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-debian/system/libraries/Database_Exception.php

15 lines
377 B
PHP
Raw Normal View History

2013-04-04 09:26:00 +00:00
<?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