blob: 9044aa6c600e3ac20450343a4929c35e08bf48aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php defined('SYSPATH') or die('No direct script access.');
/**
* ORM Validation exceptions.
*
* @package Kohana
* @author Kohana Team
* @copyright (c) 2008-2009 Kohana Team
* @license http://kohanaphp.com/license
*/
class ORM_Validation_Exception_Core extends Database_Exception {
/**
* Handles Database Validation Exceptions
*
* @param Validation $array
* @return
*/
public static function handle_validation($table, Validation $array)
{
$exception = new ORM_Validation_Exception('ORM Validation has failed for :table model',array(':table'=>$table));
$exception->validation = $array;
throw $exception;
}
} // End ORM_Validation_Exception
|