1234567891011121314151617181920212223242526272829 |
- <?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
|