Source code: com/port80/eclipse/jdt/graph/ASTError.java
1 package com.port80.eclipse.jdt.graph;
2
3 import org.eclipse.jdt.core.dom.ASTNode;
4
5 /**
6 * @author chrisl
7 *
8 * To change this generated comment edit the template variable "typecomment":
9 * Window>Preferences>Java>Templates.
10 * To enable and disable the creation of type comments go to
11 * Window>Preferences>Java>Code Generation.
12 */
13 public class ASTError extends Error {
14
15 public ASTNode errorNode;
16
17 public ASTError(ASTNode node) {
18 errorNode = node;
19 }
20 }