001package jmri.jmrit.logixng.util.parser; 002 003/** 004 * Exception thrown when the calculation failed. 005 * 006 * @author Daniel Bergqvist 2019 007 */ 008public class CalculateException 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 CalculateException(String msg) { 015 super(msg); 016 } 017}