001package sting.interceptors;
002
003import java.lang.annotation.ElementType;
004import java.lang.annotation.Retention;
005import java.lang.annotation.RetentionPolicy;
006import java.lang.annotation.Target;
007
008/**
009 * Marks an {@link AfterException} lifecycle method parameter that receives the thrown failure.
010 */
011@Retention( RetentionPolicy.RUNTIME )
012@Target( ElementType.PARAMETER )
013public @interface Thrown
014{
015}