15 lines
262 B
Java
15 lines
262 B
Java
|
package com.zcloud.util.examUntil;
|
||
|
|
||
|
import java.lang.annotation.*;
|
||
|
|
||
|
/**
|
||
|
* @Description: 异常拦截接口
|
||
|
* @Author: dearLin
|
||
|
* @Date: 2023/3/8
|
||
|
*/
|
||
|
@Target(ElementType.TYPE)
|
||
|
@Retention(RetentionPolicy.RUNTIME)
|
||
|
@Documented
|
||
|
public @interface ErrorOperation {
|
||
|
}
|