feat: add annotation

This commit is contained in:
librena 2020-10-21 23:28:50 +08:00
parent 959e99f170
commit 3e74e05075
2 changed files with 58 additions and 0 deletions

View File

@ -0,0 +1,16 @@
package com.windchat.im.business.bean;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE})
@Documented
public @interface WindChatActions {
String action();
}

View File

@ -0,0 +1,42 @@
/**
* 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;
}
}