cn.ipokerface.common.exception.ServiceCodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Common Library of ipokerface
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