feat: 添加子模块-工作流 集成相关配置

This commit is contained in:
super_liu
2021-06-08 22:23:40 +08:00
parent 79beef6692
commit 2b5164ddd3
56 changed files with 4461 additions and 0 deletions
@@ -0,0 +1,20 @@
package com.adc.da.exception;
public class ServiceException extends Exception {
/**
* Instantiates a new Service exception.
*/
public ServiceException() {
}
/**
* Instantiates a new Service exception.
*
* @param message the message
*/
public ServiceException(String message) {
super(message);
}
}