commit | author | age | ||
a18bfa | 1 | package com.changhong.epc.parsing.service.loop.exception; |
Z | 2 | |
3 | import lombok.Data; | |
4 | ||
5 | @Data | |
6 | public class InitCompanyException extends RuntimeException { | |
7 | ||
8 | private int dataState; | |
9 | ||
10 | public InitCompanyException(int dataState){ | |
11 | this.dataState = dataState; | |
12 | } | |
13 | ||
14 | } |