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