org.eclipse.jetty.continuation
类 ContinuationThrowable

java.lang.Object
  继承者 java.lang.Throwable
      继承者 java.lang.Error
          继承者 org.eclipse.jetty.continuation.ContinuationThrowable
所有已实现的接口:
Serializable

public class ContinuationThrowable
extends Error

ContinuationThrowable

A ContinuationThrowable is throw by Continuation.undispatch() in order to exit the dispatch to a Filter or Servlet. Use of ContinuationThrowable is discouraged and it is preferable to allow return to be used. ContinuationThrowables should only be used when there is a Filter/Servlet which cannot be modified to avoid committing a response when Continuation.isSuspended() is true.

ContinuationThrowable instances are often reused so that the stack trace may be entirely unrelated to the calling stack. A real stack trace may be obtained by enabling debug.

ContinuationThrowable extends Error as this is more likely to be uncaught (or rethrown) by a Filter/Servlet. A ContinuationThrowable does not represent and error condition.

另请参见:
序列化表格

构造方法摘要
ContinuationThrowable()
           
 
方法摘要
 
从类 java.lang.Throwable 继承的方法
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

构造方法详细信息

ContinuationThrowable

public ContinuationThrowable()


Copyright © 2013. All Rights Reserved.