mg
2022-10-14 622d26ba10bb7d37d006c73e240082a6f6c69db9
1
2
3
4
5
6
7
8
9
10
11
12
package com.ycl.annotation;
 
import java.lang.annotation.*;
 
/**
 * 自定义注解,有该注解的缓存方法会抛出异常
 */
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface CacheException {
}