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} 中新增處理指定異常的方法時標注使用。 010 */ 011@Target(ElementType.METHOD) 012@Retention(RetentionPolicy.RUNTIME) 013public @interface HandleException { 014 015 /** 016 * 017 * @return 指定的異常,可多過一個 018 */ 019 Class<? extends Exception>[] value(); 020 021}