blob: bde556d981bd0cdfd084c568fff7a5ef3970f16a [file] [log] [blame]
package org.eclipse.stem.graphsynchronizer;
/*******************************************************************************
* Copyright (c) 2011 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/**
* Thrown when an invalid or missing value is found in the configuration file nodeconfig.properties
*/
public class BadConfigFileException extends Exception {
public BadConfigFileException(String message) {
super(message);
}
/**
* Generated automatically
*/
private static final long serialVersionUID = -3707263573090279665L;
}