001package jmri.jmrix;
002
003/**
004 * Represents a failure during the configuration of a serial port, typically via
005 * a SerialPortAdapter interface.
006 *
007 * @author Bob Jacobsen Copyright (C) 2001
008 */
009public class SerialConfigException extends jmri.JmriException {
010
011    public SerialConfigException(String s) {
012        super(s);
013    }
014
015    public SerialConfigException() {
016    }
017
018}