Added ability for doublemodel to evaluate math expressions using exp4j, fixed typeove...
[debian/openrocket] / core / src / net / sf / openrocket / util / exp4j / InvalidCustomFunctionException.java
1 package net.sf.openrocket.util.exp4j;
2
3 public class InvalidCustomFunctionException extends Exception{
4         private static final long serialVersionUID = 1L;
5
6         public InvalidCustomFunctionException(String message) {
7                 super(message);
8         }
9 }