001package jmri.jmrit.logixng.util.parser; 002 003/** 004 * Reflection error. 005 * 006 * @author Daniel Bergqvist Copyright (C) 2021 007 */ 008public class ReflectionException extends ParserException { 009 010 /** 011 * Constructs an instance of <code>ReflectionException</code> with the specified detail message. 012 * @param msg the detail message. 013 * @param t the cause 014 */ 015 public ReflectionException(String msg, Throwable t) { 016 super(msg, t); 017 } 018 019}