All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tinygroup.fulltext.exception.FullTextException Maven / Gradle / Ivy

The newest version!
package org.tinygroup.fulltext.exception;

/**
 * 全文检索异常
 * @author yancheng11334
 *
 */
public class FullTextException extends RuntimeException{

	/**
	 * 
	 */
	private static final long serialVersionUID = 5212305943513874678L;

	public FullTextException(){
		super();
	}
	
    public FullTextException(String message){
		super(message);
	}
    
    public FullTextException(String message, Throwable cause){
    	super(message,cause);
    }
    
    public FullTextException(Throwable cause){
    	super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy