LockDAOTest: Add additional concurrency check to handle test running against clean repo

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29290 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2011-07-25 08:23:26 +00:00
parent 1546669ade
commit 18a50d8532
2 changed files with 39 additions and 10 deletions

View File

@@ -80,7 +80,6 @@ public class LockAcquisitionException extends AlfrescoRuntimeException
}
/**
*
* @param msgId one of the message IDs defined
* @param args the arguments that apply
*/
@@ -88,4 +87,14 @@ public class LockAcquisitionException extends AlfrescoRuntimeException
{
super(msgId, args);
}
/**
* @param cause an exception leading up to this
* @param msgId one of the message IDs defined
* @param args the arguments that apply
*/
public LockAcquisitionException(Throwable cause, String msgId, Object ... args)
{
super(msgId, args, cause);
}
}