01: /**
02: *
03: * Copyright 2004 James Strachan
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License");
06: * you may not use this file except in compliance with the License.
07: * You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: *
17: **/package org.codehaus.groovy.antlr;
18:
19: import antlr.collections.AST;
20: import org.codehaus.groovy.syntax.ParserException;
21:
22: /**
23: * Thrown when trying to parse the AST
24: *
25: * @version $Revision: 2120 $
26: */
27: public class ASTParserException extends ParserException {
28: private AST ast;
29:
30: public ASTParserException(ASTRuntimeException e) {
31: super (e.getMessage(), e, e.getLine(), e.getColumn());
32: this .ast = e.getAst();
33: }
34:
35: public ASTParserException(String message, ASTRuntimeException e) {
36: super (message, e, e.getLine(), e.getColumn());
37: this .ast = e.getAst();
38: }
39:
40: public AST getAst() {
41: return ast;
42: }
43: }
|