001package jmri;
002
003/**
004 * Base for exceptions indicating problems in {@link Programmer} operations.
005 *
006 * @author Bob Jacobsen Copyright (C) 2001
007 */
008public class ProgrammerException extends JmriException {
009
010    public ProgrammerException(String s) {
011        super(s);
012    }
013
014    public ProgrammerException() {
015    }
016
017}