Added new exception constructors
This commit is contained in:
parent
00a2c8e09c
commit
b120dafb70
1 changed files with 16 additions and 0 deletions
|
@ -198,4 +198,20 @@ class ORMInvalidArgumentException extends \InvalidArgumentException
|
||||||
{
|
{
|
||||||
return method_exists($obj, '__toString') ? (string)$obj : get_class($obj).'@'.spl_object_hash($obj);
|
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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue