. */ namespace Doctrine\ORM; /** * OptimisticLockException * * @author Roman Borschel * @since 2.0 */ class OptimisticLockException extends ORMException { public static function lockFailed() { return new self("The optimistic lock failed."); } }