mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
17 lines
413 B
Java
17 lines
413 B
Java
package com.avaje.ebeaninternal.server.expression;
|
|
|
|
import javax.persistence.PersistenceException;
|
|
|
|
/**
|
|
* Exception used to wrap Lucene parsing exceptions.
|
|
*/
|
|
public class PersistenceLuceneParseException extends PersistenceException {
|
|
|
|
private static final long serialVersionUID = 838790249273928392L;
|
|
|
|
public PersistenceLuceneParseException(Throwable e){
|
|
super(e);
|
|
}
|
|
|
|
}
|