From b120dafb7083f0e6eaed62af726475e321af6d16 Mon Sep 17 00:00:00 2001 From: flip111 Date: Tue, 13 Jan 2015 10:11:57 +0100 Subject: [PATCH] Added new exception constructors --- lib/Doctrine/ORM/ORMInvalidArgumentException.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/Doctrine/ORM/ORMInvalidArgumentException.php b/lib/Doctrine/ORM/ORMInvalidArgumentException.php index adb0cd529..ffd85ef0a 100644 --- a/lib/Doctrine/ORM/ORMInvalidArgumentException.php +++ b/lib/Doctrine/ORM/ORMInvalidArgumentException.php @@ -198,4 +198,20 @@ class ORMInvalidArgumentException extends \InvalidArgumentException { return method_exists($obj, '__toString') ? (string)$obj : get_class($obj).'@'.spl_object_hash($obj); } + + /** + * @return ORMInvalidArgumentException + */ + public static function invalidAssociation($relation, $fieldname, $value) { + return new self('Expected an Object for relation '.get_class($relation).'::'.$fieldname.' got '.gettype($value).' instead.'); + } + + /** + * @return ORMInvalidArgumentException + */ + public static function invalidAssociation($entry) { + $ex = new self(gettype($entry) . ' is not an Object.'); + $ex->value = $entry; + return $ex; + } }