001 package railo.runtime.exp; 002 003 public class FunctionNotSupported extends ExpressionException { 004 005 public FunctionNotSupported(String functionName) { 006 super("function "+functionName+" is not supported"); 007 } 008 009 public FunctionNotSupported(String functionName, String sub) { 010 super("function "+functionName+" with "+sub+" is not supported"); 011 } 012 013 }