View Javadoc
1   /*
2    * Copyright (c) 2020 bahlef.
3    * All rights reserved. This program and the accompanying materials
4    * are made available under the terms of the Eclipse Public License v2.0
5    * which accompanies this distribution, and is available at
6    * http://www.eclipse.org/legal/epl-v20.html
7    * Contributors:
8    * Matt Blanchette - initial API and implementation
9    * bahlef - initial documentation
10   */
11  package de.funfried.netbeans.plugins.external.formatter.exceptions;
12  
13  /**
14   * An exception thrown when there is an error reading settings from the code
15   * formatter profile of an Eclipse formatter config file.
16   *
17   * @author Matt Blanchette
18   * @author bahlef
19   */
20  public class ConfigReadException extends RuntimeException {
21  	private static final long serialVersionUID = 1L;
22  
23  	/**
24  	 * Creates a new instance of the {@link ConfigReadException}.
25  	 *
26  	 * @param message the message
27  	 */
28  	public ConfigReadException(String message) {
29  		super(message);
30  	}
31  }