view src/main/java/de/mpiwg/gazetteer/utils/exceptions/GazetteerException.java @ 105:16a0796e3871 default tip

remove "console.log" from general.js
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Fri, 29 Sep 2017 16:18:02 +0200
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;
	}
	
}