001package com.ericlam.mc.eldgui.exception; 002 003import java.lang.annotation.ElementType; 004import java.lang.annotation.Retention; 005import java.lang.annotation.RetentionPolicy; 006import java.lang.annotation.Target; 007 008/** 009 * 用於標注 {@link ExceptionViewHandler }, 表示本處理器只處理特定 controllers 所抛出的異常 010 */ 011@Target(ElementType.TYPE) 012@Retention(RetentionPolicy.RUNTIME) 013public @interface HandleForControllers { 014 015 /** 016 * 017 * @return 只處理特定 Controllers 所抛出的異常 018 */ 019 Class<?>[] value(); 020 021}