Upgrade to KH 3.3.0
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
<?php defined('SYSPATH') OR die('No direct script access.');
|
||||
/**
|
||||
* @package Kohana
|
||||
* @category Exceptions
|
||||
* @author Kohana Team
|
||||
* @copyright (c) 2009-2012 Kohana Team
|
||||
* @license http://kohanaframework.org/license
|
||||
*/
|
||||
class Kohana_Validation_Exception extends Kohana_Exception {
|
||||
|
||||
/**
|
||||
* @var object Validation instance
|
||||
*/
|
||||
public $array;
|
||||
|
||||
/**
|
||||
* @param Validation $array Validation object
|
||||
* @param string $message error message
|
||||
* @param array $values translation variables
|
||||
* @param int $code the exception code
|
||||
*/
|
||||
public function __construct(Validation $array, $message = 'Failed to validate array', array $values = NULL, $code = 0, Exception $previous = NULL)
|
||||
{
|
||||
$this->array = $array;
|
||||
|
||||
parent::__construct($message, $values, $code, $previous);
|
||||
}
|
||||
|
||||
} // End Kohana_Validation_Exception
|
Reference in New Issue
Block a user