cn.dev33.satoken.sso.exception.SaSsoException Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2020-2099 sa-token.cc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package cn.dev33.satoken.sso.exception;
import cn.dev33.satoken.exception.SaTokenException;
import cn.dev33.satoken.util.SaFoxUtil;
/**
* 一个异常:代表 SSO 认证流程错误
*
* @author click33
* @since 1.30.0
*/
public class SaSsoException extends SaTokenException {
/**
* 序列化版本号
*/
private static final long serialVersionUID = 6806129545290130114L;
/**
* 一个异常:代表 SSO 认证流程错误
* @param message 异常描述
*/
public SaSsoException(String message) {
super(message);
}
/**
* 一个异常:代表 SSO 认证流程错误
* @param code 异常细分状态码
* @param message 异常描述
*/
public SaSsoException(int code, String message) {
super(code, message);
}
/**
* 写入异常细分状态码
* @param code 异常细分状态码
* @return 对象自身
*/
public SaSsoException setCode(int code) {
super.setCode(code);
return this;
}
/**
* 断言 flag 不为 true,否则抛出 message 异常
* @param flag 标记
* @param message 异常信息
* @param code 异常细分状态码
*/
public static void notTrue(boolean flag, String message, int code) {
if(flag) {
throw new SaSsoException(message).setCode(code);
}
}
/**
* 断言 value 不为空,否则抛出 message 异常
* @param value 值
* @param message 异常信息
* @param code 异常细分状态码
*/
public static void notEmpty(Object value, String message, int code) {
if(SaFoxUtil.isEmpty(value)) {
throw new SaSsoException(message).setCode(code);
}
}
/**
* 如果flag==true,则抛出message异常
* @param flag 标记
* @param message 异常信息
*/
@Deprecated
public static void throwBy(boolean flag, String message) {
if(flag) {
throw new SaSsoException(message);
}
}
}