mirror of
				https://github.com/Alfresco/alfresco-community-repo.git
				synced 2025-10-29 15:21:53 +00:00 
			
		
		
		
	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
		
			
				
	
	
		
			51 lines
		
	
	
		
			915 B
		
	
	
	
		
			Java
		
	
	
	
	
	
			
		
		
	
	
			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);
 | |
|     }
 | |
| }
 |