FileDocCategorySizeDatePackage
ModificationConflictException.javaAPI DocApache Lucene 2.1.02130Wed Feb 14 10:46:04 GMT 2007org.apache.lucene.gdata.storage

ModificationConflictException

public class ModificationConflictException extends StorageException
This exception will be thrown if a Version conflict occures while updateing or deleteing an entry. Or if one entry is modified concurrently.
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ModificationConflictException()
Constructs a new ModificationConflictException


             
      
        super();
    
public ModificationConflictException(String message)
Constructs a new ModificationConflictException

param
message - the exception message

        super(message);

    
public ModificationConflictException(String message, Throwable cause)
Constructs a new ModificationConflictException

param
message - the exception message
param
cause - the root cause of this exception

        super(message, cause);

    
public ModificationConflictException(Throwable cause)
Constructs a new ModificationConflictException

param
cause - the root cause of this exception

        super(cause);

    
Methods Summary