01: /*******************************************************************************
02: * Copyright (c) 2004 IBM Corporation and others.
03: * All rights reserved. This program and the accompanying materials
04: * are made available under the terms of the Common Public License v1.0
05: * which accompanies this distribution, and is available at
06: * http://www.eclipse.org/legal/cpl-v10.html
07: *
08: * Contributors:
09: * IBM - Initial API and implementation
10: ******************************************************************************/package org.codehaus.groovy.classgen;
11:
12: import java.util.List;
13:
14: import org.codehaus.groovy.ast.ASTNode;
15: import org.codehaus.groovy.syntax.RuntimeParserException;
16:
17: /**
18: * RuntimeIncompleteClassException
19: *
20: */
21: public class RuntimeIncompleteClassException extends
22: RuntimeParserException {
23:
24: /**
25: * @param a_classnames
26: * @param a_node
27: */
28: public RuntimeIncompleteClassException(List a_classnames,
29: ASTNode a_node) {
30: super ("Incomplete class: does not implement abstract methods: "
31: + a_classnames, a_node);
32: }
33:
34: }
|