- package cn.com.lzt.budget.data.exception;
- public class BudgetWriteBackException extends RuntimeException {
- private Integer code;
- public BudgetWriteBackException(Integer code){
- this.code = code;
- }
- public Integer getCode() {
- return code;
- }
- public void setCode(Integer code) {
- this.code = code;
- }
- }
|