1 46 package org.codehaus.groovy.runtime; 47 48 import groovy.lang.*; 49 50 import java.lang.reflect.InvocationTargetException ; 51 52 58 public class InvokerInvocationException extends GroovyRuntimeException { 59 60 public InvokerInvocationException(InvocationTargetException e) { 61 super(e.getTargetException().toString(), e.getTargetException()); 62 } 63 64 } 65 | Popular Tags |