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