Britt Park c4ae3bd5fa Clears up problems submitting deleted files via workflow. Still need to systematically
go through DeletedNode implementation to make sure it's fully first class.
Adding some debugging code that throws exceptions if it detects certain kinds of races. 
It can be turned off but I want to leave it on until GA.  And, you'll need to start from a clean
database as the AVM schema have changed.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@4683 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-12-21 18:19:54 +00:00

51 lines
915 B
Java

/**
*
*/
package org.alfresco.service.cmr.avm;
/**
* A Debugging exception.
* @author britt
*/
public class AVMReadOnlyException extends AVMException
{
private static final long serialVersionUID = 5074287797390504317L;
/**
* @param msgId
*/
public AVMReadOnlyException(String msgId)
{
super(msgId);
}
/**
* @param msgId
* @param msgParams
*/
public AVMReadOnlyException(String msgId, Object[] msgParams)
{
super(msgId, msgParams);
}
/**
* @param msgId
* @param cause
*/
public AVMReadOnlyException(String msgId, Throwable cause)
{
super(msgId, cause);
}
/**
* @param msgId
* @param msgParams
* @param cause
*/
public AVMReadOnlyException(String msgId, Object[] msgParams,
Throwable cause)
{
super(msgId, msgParams, cause);
}
}