001package org.editorconfig.core;
002
003import java.io.IOException;
004
005/**
006 * Exception which is thrown by {@link EditorConfig#getProperties(String)} if an EditorConfig file could not be parsed
007 *
008 * @author Dennis.Ushakov
009 */
010public class ParsingException extends EditorConfigException {
011  public ParsingException(String s, IOException e) {
012    super(s, e);
013  }
014}