view src/main/java/de/mpiwg/gazetteer/utils/exceptions/GazetteerException.java @ 0:7682c04c63a8

First commit of the source code!
author "jurzua <jurzua@mpiwg-berlin.mpg.de>"
date Tue, 10 Mar 2015 14:50:41 +0100
parents
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;
	}
	
}