001package jmri.jmrit.progsupport;
002
003import jmri.ProgrammerException;
004
005/**
006 * Represents an attempt to use an unsupported mode or option while programming.
007 * This is a configuration failure, not an operational failure
008 *
009 * @author Bob Jacobsen Copyright (C) 2001, 2008
010 */
011public class ProgModeException extends ProgrammerException {
012    public ProgModeException(String s) {
013        super(s);
014    }
015
016    public ProgModeException() {
017    }
018
019}
020
021