001package jmri.jmrit.logixng.util.parser; 002 003/** 004 * Wrong number of parameters to a function. 005 * 006 * @author Daniel Bergqvist 2019 007 */ 008public class WrongNumberOfParametersException extends ParserException { 009 010 /** 011 * Constructs an instance of <code>CalculateException</code> with the specified detail message. 012 * @param msg the detail message. 013 */ 014 public WrongNumberOfParametersException(String msg) { 015 super(msg); 016 } 017}