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