org.codehaus.groovy.runtime
public class: InvokerInvocationException [javadoc |
source]
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
groovy.lang.GroovyRuntimeException
org.codehaus.groovy.runtime.InvokerInvocationException
All Implemented Interfaces:
Serializable
An exception thrown if a method is called and an exception occurred
- author:
< - a href="mailto:james@coredevelopers.net">James Strachan
- version:
$ - Revision: 8867 $
| Method from org.codehaus.groovy.runtime.InvokerInvocationException Summary: |
|---|
|
getMessage |
| Methods from java.lang.Throwable: |
|---|
|
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Method from org.codehaus.groovy.runtime.InvokerInvocationException Detail: |
public String getMessage() {
Throwable cause = getCause();
return (cause==null)?"java.lang.NullPointerException":cause.toString();
}
|