ErrorCode.java 635 字节
Newer Older
M
ManongJu 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
package com.microservice.skeleton.gateway.model;

/**
 * Created by Mr.Yangxiufeng on 2017/12/26.
 * Time:13:50
 * ProjectName:Mirco-Service-Skeleton
 */
public class ErrorCode {

    public static final int OK=200;


    public static final int BAD_REQUEST=400;
    public static final int UNAUTHORIZED = 401;
    public static final int FORBIDDEN = 403;
    public static final int NOT_FOUNT = 404;

    public static final int MICRO_SERVICE_UNAVAILABLE = 40001;//微服务不可用

    public static final int SERVER_ERROR=500;
    public static final int BAD_GATEWAY = 502;
    public static final int SERVICE_UNAVAILABLE=503;

}