package com.k_int.aggregator.dpp.util;

/**
 * A class to represent errors encountered when parsing spreadsheet data into the CG system
 * Taken from the People's record work performed previously
 * 
 * @author Rich rich@k-int.com
 * @version 1.0, 02.02.10
 */
public class ParsingException extends Exception {

	private static final long serialVersionUID = 2565975905786143791L;
	public String message = "";
	
	public ParsingException() {
		super();
	}
	
	public ParsingException(String message) {
		super();
		this.message = message;
	}
	
}
