blob: 94b655fd67d52f1336a2f2f9f3da29e40358423d [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation and Others
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Kentarou FUKUDA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.visualization.eval.html.statistics;
public class StatisticsDataFormatException extends Exception {
private static final long serialVersionUID = -2899274818180627014L;
/**
*
*/
public StatisticsDataFormatException() {
super();
}
/**
* @param message
*/
public StatisticsDataFormatException(String message) {
super(message);
}
/**
* @param message
* @param cause
*/
public StatisticsDataFormatException(String message, Throwable cause) {
super(message, cause);
}
/**
* @param cause
*/
public StatisticsDataFormatException(Throwable cause) {
super(cause);
}
}