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.
csxm/WMS/src/main/java/com/ken/wms/exception/SystemLogServiceException.java

27 lines
534 B

package com.ken.wms.exception;
/**
* 系统操作日志 Service 异常
*
* @author Ken
* @since 2017/4/7.
*/
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);
}
}