1
0
mirror of synced 2025-01-17 22:11:41 +03:00

DDC-1240 - Fix optimistic lock exception loosing the message

This commit is contained in:
Benjamin Eberlei 2011-07-12 22:50:21 +02:00
parent 5733574867
commit 98fabd98be

View File

@ -33,6 +33,7 @@ class OptimisticLockException extends ORMException
public function __construct($msg, $entity)
{
parent::__construct($msg);
$this->entity = $entity;
}