blob: f6dd4d4d6011c4aa7ce17b0b903af48675269c54 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012, 2019 INRIA.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Guillaume Doux - INRIA - Initial API and implementation
*
******************************************************************************/
package org.eclipse.modisco.utils.chart.birt.core.internal;
/**
* @author Guillaume Doux
*
*/
public class GraphHelperException extends Exception {
private static final long serialVersionUID = 2774603084379461356L;
public GraphHelperException(final String message) {
super(message);
}
}