wl
2023-01-05 7fc8c8711f7b1523a19411e325e537b6d4a26226
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.ycl.exception;
 
 
import com.ycl.api.IErrorCode;
 
/**
 * 断言处理类,用于抛出各种API异常
 * Created by macro on 2020/2/27.
 */
public class Asserts {
    public static void fail(String message) {
        throw new ApiException(message);
    }
 
    public static void fail(IErrorCode errorCode) {
        throw new ApiException(errorCode);
    }
}