001package jmri.jmrix.purejavacomm;
002
003/**
004 * This exception is thrown when there is no such port.
005 */
006public class NoSuchPortException extends Exception {
007
008    /**
009     * Creates a new instance of <code>NoSuchPortException</code> without detail message.
010     */
011    public NoSuchPortException() {
012    }
013
014}