1 11 12 13 package org.codehaus.groovy.classgen; 14 15 import java.util.List ; 16 17 import org.codehaus.groovy.ast.ASTNode; 18 import org.codehaus.groovy.syntax.parser.RuntimeParserException; 19 20 21 25 public class RuntimeIncompleteClassException extends RuntimeParserException { 26 27 31 public RuntimeIncompleteClassException(List a_classnames, ASTNode a_node) { 32 super("Incomplete class: does not implement abstract methods: " + a_classnames, a_node); 33 } 34 35 } 36 | Popular Tags |