All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.common.exception.ServiceCodeException Maven / Gradle / Ivy

There is a newer version: 2.9.1
Show newest version
package cn.ipokerface.common.exception;

/**
 * Created by       PokerFace
 * Create Date      2021/7/28
 * Version          1.0.0
 * Description:
 */
public class ServiceCodeException extends ServiceException{

    private int code = 0;


    public ServiceCodeException(String message, int code) {
        super(message);
        this.code = code;
    }

    public ServiceCodeException(String message) {
        super(message);
    }

    public ServiceCodeException() {
    }

    public int getCode() {
        return code;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy