
net.guerlab.web.result.Fail Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of guerlab-web Show documentation
Show all versions of guerlab-web Show documentation
net.guerlab.web is a suite of spring web expanded libraries that include utility classes and much much
more.
The newest version!
/*
* Copyright 2018-2021 guerlab.net and other contributors.
*
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE, Version 3 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.guerlab.web.result;
/**
* 通用失败JSON返回结果集
*
* @param
* 数据类型
* @author guer
*/
public class Fail extends Result {
private static final String MSG = "fail";
/**
* 无参构造
*/
public Fail() {
this(MSG, null);
}
/**
* 通过设置消息内容来初始化结果集
*
* @param message
* 消息内容
*/
public Fail(String message) {
this(message, null);
}
/**
* 通过设置数据来初始化结果集
*
* @param data
* 数据
*/
public Fail(T data) {
this(MSG, data);
}
/**
* 通过设置消息内容和数据来初始化结果集
*
* @param message
* 消息内容
* @param data
* 数据
*/
public Fail(String message, T data) {
super(false, message, data);
}
/**
* 通过设置数据来初始化结果集
*
* @param message
* 消息内容
* @param errorCode
* 错误代码
*/
public Fail(String message, int errorCode) {
this(message, null);
this.errorCode = errorCode;
}
/**
* 通过设置数据来初始化结果集
*
* @param message
* 消息内容
* @param errorCode
* 错误代码
* @param errorDetail
* 错误详情
*/
public Fail(String message, int errorCode, String errorDetail) {
this(message, null);
this.errorCode = errorCode;
this.errorDetail = errorDetail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy