package com.sleepycat.je.dbi; import com.sleepycat.je.DatabaseException; import de.ovgu.cide.jakutil.*; /** * Thrown by the LockManager when requesting a RANGE_READ or RANGE_WRITE * lock, and a RANGE_INSERT lock is held or is waiting. This exception is * caught by read operations and causes a restart of the operation. It should * never be seen by the user. */ public class RangeRestartException extends DatabaseException { public RangeRestartException(){ super(); } }