001package jmri; 002 003/** 004 * Represents a failure to write when programming. 005 * <p> 006 * No ACK is not a failure if the implementation does not expect to see one. 007 * 008 * @author Bob Jacobsen Copyright (C) 2001, 2008 009 */ 010public class ProgWriteException extends ProgrammerException { 011 012 public ProgWriteException(String s) { 013 super(s); 014 } 015 016 public ProgWriteException() { 017 } 018 019}