view src/main/java/de/mpiwg/gazetteer/utils/exceptions/GazetteerException.java @ 50:8f6c47775fe8

new: 'view on LGMap' shown on the existing full text searching list
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 26 Jan 2016 13:41:47 +0100
parents 3e62083dbcbf
children
line wrap: on
line source

package de.mpiwg.gazetteer.utils.exceptions;

public abstract class GazetteerException extends Exception{

	private static final long serialVersionUID = -7540131287577085722L;
	
	public	 static int CODE = 0;
	
	public int getCode(){
		return CODE;
	}
	
}