001package jmri.jmrit.logixng.util.parser; 002 003/** 004 * The function does not exists. 005 * 006 * @author Daniel Bergqvist Copyright (C) 2020 007 */ 008public class FunctionNotExistsException extends ParserException { 009 010 private final String _functionName; 011 012 /** 013 * Constructs an instance of <code>FunctionNotExistsException</code> with the specified detail message. 014 * @param msg the detail message. 015 * @param functionName the name of the function 016 */ 017 public FunctionNotExistsException(String msg, String functionName) { 018 super(msg); 019 _functionName = functionName; 020 } 021 022 public String getFunctionName() { 023 return _functionName; 024 } 025 026}