com.sdm.quasar.client.core.common.event
Interface ExceptionRunnable
- public interface ExceptionRunnable
A computation to be performed, that throws one or more (checked) exceptions.
- Author:
- Thomas Wolf
|
Method Summary |
java.lang.Object |
run()
Performs the computation. |
run
public java.lang.Object run()
throws java.lang.Exception
- Performs the computation.
- Returns:
- a class-dependent value that may represent the results of the
computation. Each class that implements
ExceptionRunnable should
document what (if anything) this value represents.
- Throws:
java.lang.Exception - an exceptional condition has occurred. Each class that
implements ExceptionRunnable should document the exceptions that
its run method can throw.