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