ConfigReadException.java

/*
 * Copyright (c) 2020 bahlef.
 * 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:
 * Matt Blanchette - initial API and implementation
 * bahlef - initial documentation
 */
package de.funfried.netbeans.plugins.external.formatter.exceptions;

/**
 * An exception thrown when there is an error reading settings from the code
 * formatter profile of an Eclipse formatter config file.
 *
 * @author Matt Blanchette
 * @author bahlef
 */
public class ConfigReadException extends RuntimeException {
	private static final long serialVersionUID = 1L;

	/**
	 * Creates a new instance of the {@link ConfigReadException}.
	 *
	 * @param message the message
	 */
	public ConfigReadException(String message) {
		super(message);
	}
}