BudgetWriteBackException.java 351 B

12345678910111213141516
  1. package cn.com.lzt.budget.data.exception;
  2. public class BudgetWriteBackException extends RuntimeException {
  3. private Integer code;
  4. public BudgetWriteBackException(Integer code){
  5. this.code = code;
  6. }
  7. public Integer getCode() {
  8. return code;
  9. }
  10. public void setCode(Integer code) {
  11. this.code = code;
  12. }
  13. }