01: package org.garret.perst.continuous;
02:
03: /**
04: * Exception thrown when CDatabase.find method is invoked for the field not declared as indexable
05: */
06: public class NoSuchIndexException extends ContinuousException {
07: NoSuchIndexException(String field) {
08: super ("There is no index for field " + field);
09: }
10: }
|