com.stumbleupon.async
Class CallbackOverflowError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.VirtualMachineError
java.lang.StackOverflowError
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
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
CallbackOverflowError
public CallbackOverflowError(String msg)
Copyright © 2010-2013, The SUAsync Authors