From 2d55394109abe4e45f03efdc47b148e08dad5626 Mon Sep 17 00:00:00 2001 From: meus Date: Sat, 21 Jul 2007 22:15:22 +0000 Subject: [PATCH] fixed default error message for ValidatorException that list the classes that have validation errors --- lib/Doctrine/Validator/Exception.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/Doctrine/Validator/Exception.php b/lib/Doctrine/Validator/Exception.php index bcad7cacc..54dc0fd42 100644 --- a/lib/Doctrine/Validator/Exception.php +++ b/lib/Doctrine/Validator/Exception.php @@ -42,6 +42,7 @@ class Doctrine_Validator_Exception extends Doctrine_Exception implements Countab public function __construct(array $invalid) { $this->invalid = $invalid; + parent::__construct($this->generateMessage()); } public function getInvalidRecords() @@ -68,4 +69,14 @@ class Doctrine_Validator_Exception extends Doctrine_Exception implements Countab return parent::__toString(); } + + private function generateMessage() + { + $message = ""; + foreach ($this->invalid as $record){ + $message .= "Validaton error in class " . get_class($record) . " "; + } + return $message; + } + }