Module org.refcodes.exception
Package org.refcodes.exception
Interface Exceptional<EXC extends Throwable>
- Type Parameters:
EXC
- theThrowable
type
public interface Exceptional<EXC extends Throwable>
The
Exceptional
interface provides means for threads to wait (sleep)
when calling catchException()
till a next Exception
occurs
or till the waiting (sleeping) threads are released.
Usually only Exception
instances are exposed which are occurring
inside daemon threads and are usually hidden from the (business) logic. Such
Exception
instances usually just get logged, no customizable reaction
upon such exceptions is possible. This interface enables to react to such
Exception
instances without the need to overwrite an abstract class's
method and without requiring the implementation of an observable interface.
It depends on the implementation on how waiting (sleeping) threads are
released, this can be established for example upon disposal by invoking
Disposable#dispose()
or destruction by invoking
Destroyable#destroy()
.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
This methods awaits anException
, usually happening inside a daemon thread and therefore not directly accessible by some (business) logic.Returns the last exception which was catchable viacatchException()
.
-
Method Details
-
catchException
void catchException() throws EXCThis methods awaits anException
, usually happening inside a daemon thread and therefore not directly accessible by some (business) logic. It waits (sleeps) until anException
arises which is then thrown by this method. Upon disposal (Disposable#dispose()
) or destruction (Destroyable.destroy()
) all waiting threads are continued without throwing any exception. ------------------------------------------------------------------------- ATTENTION: In case waiting (sleeping) threads are released without throwing anException
, then this means that the implementing instance intends to shut down so that in such as case, no more calls to this method are to be performed (are to be prevented), such looping threads would lead to endless looping and aCause consumption of calculation power. Implementing instances might throw anIllegalStateException
exception in case such a status is detected!- Throws:
EXC
- Thrown when a next exception has been provided viaExceptionWatchdog#throwException(Exception)
IllegalStateException
- Thrown in case this method is being called even though the implementing instance has been shut down and has released all threads without throwing an exception.
-
lastException
EXC lastException()Returns the last exception which was catchable viacatchException()
.- Returns:
- The last exception being catchable via
catchException()
;
-