home *** CD-ROM | disk | FTP | other *** search
- package allaire.util.template;
-
- public class SymbolTableException extends TemplateException {
- private static final int ERR_BASE = 200;
- public static final int ERR_INVALID_SYMBOL = 201;
- public static final int ERR_SYMBOL_NOEXIST = 202;
-
- public SymbolTableException(int var1, String var2) {
- super(var1, var2);
- }
-
- static {
- TemplateException.addError(201, "Invalid symbol name");
- TemplateException.addError(202, "Symbol does not exist");
- }
- }
-