库存核心部分代码

This commit is contained in:
JinLu.Yin
2022-05-25 23:14:08 +08:00
parent ec9c9855ca
commit bc42b91358
9 changed files with 216 additions and 10 deletions

View File

@@ -0,0 +1,23 @@
package com.ktg.common.exception;
public class BussinessException extends RuntimeException {
private static final long serialVersionUID = -1L;
public BussinessException(){
super();
}
public BussinessException(String msg){
super(msg);
}
public BussinessException(String msg,Throwable cause){
super(msg,cause);
}
public BussinessException(Throwable cause){
super(cause);
}
}