All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.needcoke.coke.web.exception.ExceptionHandler Maven / Gradle / Ivy

package org.needcoke.coke.web.exception;

import java.lang.annotation.*;


/**
 * @ExceptionHandler标注的方法有且最多有一个参数 即为异常本身
 */

@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ExceptionHandler {

    /**
     * 捕获的异常类型
     */
    Class[] value() default {};
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy