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>PassThruException</code> without detail message. 014 */ 015 public PassThruException() { 016 } 017 018 /** 019 * Creates a new instance of <code>PassThruException</code> with a detail message. 020 * @param msg the message 021 */ 022 public PassThruException(String msg) { 023 super(msg); 024 } 025 026}