All Downloads are FREE. Search and download functionalities are using the official Maven repository.

titan.lightbatis.common.Asserts Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package titan.lightbatis.common;

/**
 * 断言处理类,用于抛出各种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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy