001package jmri.jmrit.logixng;
002
003import jmri.JmriException;
004
005/**
006 * This exception should not be handled unless in some special conditions.
007 *
008 * @author Daniel Bergqvist 2022
009 */
010public abstract class PassThruException extends JmriException {
011
012    /**
013     * Creates a new instance of <code>BreakException</code> without detail message.
014     */
015    public PassThruException() {
016    }
017
018}