com.stumbleupon.async
Class CallbackOverflowError

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Error
          extended by java.lang.VirtualMachineError
              extended by java.lang.StackOverflowError
                  extended by com.stumbleupon.async.CallbackOverflowError
All Implemented Interfaces:
Serializable

public final class CallbackOverflowError
extends StackOverflowError

Exception raised when too many callbacks are chained together.

You are not encouraged to catch this exception. That is why it inherits from StackOverflowError, because it generally indicates a programming error that would have led to an actual stack overflow had the code been written with sequential code (without callbacks).

Since:
1.3
See Also:
Serialized Form

Constructor Summary
CallbackOverflowError(String msg)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CallbackOverflowError

public CallbackOverflowError(String msg)


Copyright © 2010-2013, The SUAsync Authors