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