Starrier/commons

View on GitHub
src/main/java/org/starrier/common/annotation/logger/ExceptionLogger.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;
 
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
@Documented
public @interface ExceptionLogger {
 
Class<? extends Throwable>[] value() default {Throwable.class};
}