package eu.dnetlib.common.interfaces.nh;

/**
 *  Copyright ©2008-2009 DRIVER-II Project All Rights Reserved
 *
 *  @author Jochen Schirrwagen (jochen.schirrwagen@uni-bielefeld.de) 
 */
public class MessageException extends Exception {

	
	static final long serialVersionUID = -9031658362109592193L;

	public MessageException(){
		super();
	}
	
	public MessageException(Exception exc){
		super(exc);
	}
	
	public MessageException(String errorMessage){
		super(errorMessage);
	}
}
