001package jmri.jmrit.logixng; 002 003/** 004 * This exception is thrown by the ValidationError action. 005 * 006 * @author Daniel Bergqvist 2025 007 */ 008public class ValidationErrorException extends PassThruException { 009 010 /** 011 * Creates a new instance of <code>ValidationError</code> without detail message. 012 */ 013 public ValidationErrorException() { 014 } 015 016 /** 017 * Creates a new instance of <code>ValidationError</code> with a detail message. 018 * @param msg the message 019 */ 020 public ValidationErrorException(String msg) { 021 super(msg); 022 } 023 024}