/** * Copyright 2018-2028 Akaxin Group * * 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 com.windchat.common.exceptions; import com.windchat.common.constant.IErrorCode; import com.windchat.common.constant.IErrorCode; /** * 自定义API请求过程中产生的特殊异常 * * @author Sam{@link an.guoyue254@gmail.com} * @since 2018-04-09 12:32:08 */ public class ZalyException extends Exception { /** * */ private static final long serialVersionUID = 1L; private IErrorCode errCode; public ZalyException(IErrorCode errCode) { super(errCode.toString()); this.errCode = errCode; } public IErrorCode getErrCode() { return this.errCode; } }