
net.guerlab.web.exception.ParamsErrorException 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.exception;
import net.guerlab.commons.exception.ApplicationException;
import org.apache.commons.lang3.StringUtils;
/**
* 参数异常
*
* @author guer
*
*/
public class ParamsErrorException extends ApplicationException {
private static final long serialVersionUID = 1L;
private static int errorCode = 700;
static {
String value = System.getProperty("net.guerlab.errorCode.ParamsErrorException");
if (!StringUtils.isBlank(value)) {
int errorCode = 0;
try {
errorCode = Integer.parseInt(value);
} catch (Exception e) {
/*
* don't need a log
*/
}
if (errorCode > 0) {
ParamsErrorException.errorCode = errorCode;
}
}
}
/**
* 创建并初始化参数异常
*
* @param message
* 参数异常信息
* @param cause
* 错误栈信息
*/
public ParamsErrorException(String message, Throwable cause) {
super(message, cause, errorCode);
}
/**
* 创建并初始化参数异常
*
* @param message
* 参数异常信息
*/
public ParamsErrorException(String message) {
super(message, errorCode);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy