org.soybeanMilk.core
类 InvocationExecuteException

java.lang.Object
  继承者 java.lang.Throwable
      继承者 java.lang.Exception
          继承者 org.soybeanMilk.core.ExecuteException
              继承者 org.soybeanMilk.core.InvocationExecuteException
所有已实现的接口:
java.io.Serializable

public class InvocationExecuteException
extends ExecuteException

执行异常,调用方法在执行时内部抛出异常。 它的源异常是由调用方法的编写者定义的方法异常或者方法引起的运行时异常。

作者:
earthAngry@gmail.com
另请参见:
序列化表格

构造方法摘要
InvocationExecuteException(Invoke invoke, java.lang.Throwable cause)
           
 
方法摘要
 java.lang.Throwable getCause()
          获取源异常
 Invoke getInvoke()
          获取产生此异常的调用
 void setInvoke(Invoke invoke)
           
 
从类 java.lang.Throwable 继承的方法
fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

InvocationExecuteException

public InvocationExecuteException(Invoke invoke,
                                  java.lang.Throwable cause)
方法详细信息

getInvoke

public Invoke getInvoke()
获取产生此异常的调用

返回:

setInvoke

public void setInvoke(Invoke invoke)

getCause

public java.lang.Throwable getCause()
获取源异常

覆盖:
java.lang.Throwable 中的 getCause