0byt3m1n1
Path:
/
data
/
applications
/
aps
/
gallery
/
3.0.9-21
/
standard
/
htdocs
/
system
/
libraries
/
[
Home
]
File: Database_Exception.php
<?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