001package jmri;
002
003/**
004 * Represents a failure to read when programming.
005 *
006 * @author Bob Jacobsen Copyright (C) 2001, 2008
007 */
008public class ProgReadException extends ProgrammerException {
009
010    public ProgReadException(String s) {
011        super(s);
012    }
013
014    public ProgReadException() {
015    }
016
017}