12 lines
314 B
PHP
12 lines
314 B
PHP
|
<?php
|
||
|
class Doctrine_Validator_Exception extends Doctrine_Exception {
|
||
|
private $validator;
|
||
|
public function __construct(Doctrine_Validator $validator) {
|
||
|
$this->validator = $validator;
|
||
|
}
|
||
|
public function getErrorStack() {
|
||
|
return $this->validator->getErrorStack();
|
||
|
}
|
||
|
}
|
||
|
?>
|