1 package org.apache.velocity.runtime.exception; 2 3 18 19 import org.apache.velocity.runtime.parser.node.Node; 20 21 public class NodeException extends Exception  22 { 23 public NodeException(String exceptionMessage, Node node) 24 { 25 super(exceptionMessage + ": " + node.literal() + 26 " [line " + node.getLine() + ",column " + 27 node.getColumn() + "]"); 28 } 29 } 30 | Popular Tags |