001package jmri.jmrit.logixng;
002
003/**
004 * This exception is thrown by the Break action.
005 *
006 * @author Daniel Bergqvist 2022
007 */
008public class BreakException extends PassThruException {
009
010    /**
011     * Creates a new instance of <code>BreakException</code> without detail message.
012     */
013    public BreakException() {
014    }
015
016}