Starrier/commons

View on GitHub
src/main/java/org/starrier/common/annotation/logger/ExceptionNull.java

Summary

Maintainability
A
0 mins
Test Coverage
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)
@Documented
public @interface ExceptionNull {
 
Class<? extends Throwable>[] value() default {Throwable.class};
}