You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cangku/WMS/src/main/java/com/ken/wms/exception/SystemLogServiceException.java

25 lines
497 B

package com.ken.wms.exception;
/**
* 系统操作日志 Service 异常
*/
public class SystemLogServiceException extends BusinessException {
public SystemLogServiceException(){
super();
}
public SystemLogServiceException(Exception e){
super(e);
}
public SystemLogServiceException(Exception e, String exceptionDesc){
super(e, exceptionDesc);
}
public SystemLogServiceException(String exceptionDesc){
super(exceptionDesc);
}
}