home *** CD-ROM | disk | FTP | other *** search
- package allaire.util.template;
-
- public class FunctionCallException extends ExpressionException {
- private static final int ERR_BASE = 150;
- public static final int ERR_INVALID_ARG_TYPE = 150;
- public static final int ERR_TOO_FEW_ARGS = 151;
- public static final int ERR_TOO_MANY_ARGS = 152;
- public static final int ERR_USER_BASE = 1000;
-
- static {
- TemplateException.addError(150, "Invalid function argument type");
- TemplateException.addError(151, "Too few arguments specified");
- TemplateException.addError(152, "Too many arguments specified");
- }
-
- public FunctionCallException(int var1, String var2) {
- super(var1, var2);
- }
- }
-