1 package org.apache.velocity.runtime.exception; 2 3 18 19 import org.apache.velocity.runtime.parser.node.Node; 20 21 27 public class ReferenceException extends Exception  28 { 29 public ReferenceException(String exceptionMessage, Node node) 30 { 31 super(exceptionMessage + " [line " + node.getLine() + ",column " + 32 node.getColumn() + "] : " + node.literal() + 33 " is not a valid reference."); 34 } 35 } 36 | Popular Tags |