com.treeyh.raindrop.exception.RaindropException Maven / Gradle / Ivy
package com.treeyh.raindrop.exception;
/**
* @author: Treeyh
* @version: 1.0
* @description:
* @create: 2023-04-06 17:58
* @email: [email protected]
**/
public class RaindropException extends Exception {
private Integer code;
public RaindropException(Integer code, String msg) {
super(msg);
this.code = code;
}
public Integer getCode() {
return code;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy