view src/main/java/de/mpiwg/gazetteer/utils/exceptions/GazetteerException.java @ 102:6a508b605b5f

1. add new page : footer.jsp. 2. embed footer.jsp into other pages.
author Calvin Yeh <cyeh@mpipw-berlin.mpg.com>
date Fri, 29 Sep 2017 16:03:06 +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;
	}
	
}