001package org.editorconfig.core;
002
003import java.io.IOException;
004
005/**
006 * The base class of all EditorConfig exceptions
007 *
008 * @author Dennis.Ushakov
009 */
010public class EditorConfigException extends Exception {
011  public EditorConfigException(String s, IOException e) {
012    super(s, e);
013  }
014}