|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Documented @Retention(value=RUNTIME) @Target(value=TYPE) @Inherited public @interface HandleExceptionsFor
Defines an exception handling delegate.
This type level Annotation
describes an
ExceptionHandling
delegation that is if class A extends
or implements class/interface B and wants to take over the
exception handling for it, then HandleExceptionsFor
could
be used to point to this class/interface if theres a
HandleExceptions
annotation on the same type it will
override the delegation.
NOTE: the whole pluggable exception handling (PEH) module is highly experimental and still under heavy development, don't use it in production code unless you know what you're doing!
Required Element Summary | |
---|---|
java.lang.Class<?> |
value
the class to which the exception handling configuration is delegated. |
Element Detail |
---|
public abstract java.lang.Class<?> value
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |