01: package org.garret.perst.continuous; 02: 03: /** 04: * Exception thown by full text search query parser 05: */ 06: public class FullTextSearchQuerySyntaxError extends ContinuousException { 07: FullTextSearchQuerySyntaxError(Exception x) { 08: super(x); 09: } 10: }