com.emarsys.ecommon.exceptions.handling
Annotation Type HandleExceptionsFor


@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!

Author:
Michael "kULO" Kulovits


Required Element Summary
 java.lang.Class<?> value
          the class to which the exception handling configuration is delegated.
 

Element Detail

value

public abstract java.lang.Class<?> value
the class to which the exception handling configuration is delegated.



Copyright © 2010 emarsys AG. All Rights Reserved.