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

io.github.dragons96.ErrorResponse Maven / Gradle / Ivy

There is a newer version: 0.0.4
Show newest version
package io.github.dragons96;

import lombok.ToString;

/**
 * 错误响应
 * @author dragons
 * @date 2022/3/16 11:03
 */
@ToString(callSuper = true)
public class ErrorResponse extends BaseResponse {

    public ErrorResponse(int code, String message) {
        super(code, message);
    }

    public ErrorResponse(IResponseEnum responseEnum) {
        super(responseEnum);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy