src/main/java/org/starrier/common/annotation/logger/ExceptionNull.java
package org.starrier.common.annotation.logger; import java.lang.annotation.Documented;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;import java.lang.annotation.Target; /** * @author Starrier * @date 2019/09/01 */@Retention(RetentionPolicy.RUNTIME)@Target(ElementType.METHOD)@Documentedpublic @interface ExceptionNull { Class<? extends Throwable>[] value() default {Throwable.class};}